diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-11-07 11:20:17 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-11-07 11:20:17 -0500 |
commit | 69121ee97028f975bf93ef0c7a70fb6d390c2d83 (patch) | |
tree | 302f03cd21e19848da7cb8ad6060fc5f64d822aa /src | |
parent | e1c883572ab25d5502cae13869709ed9d94400e6 (diff) |
libremakepkg: useless use of `cat`
Diffstat (limited to 'src')
-rw-r--r-- | src/chroot-tools/hooks-distcc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chroot-tools/hooks-distcc.sh b/src/chroot-tools/hooks-distcc.sh index 9e42242..d8d708a 100644 --- a/src/chroot-tools/hooks-distcc.sh +++ b/src/chroot-tools/hooks-distcc.sh @@ -75,7 +75,7 @@ distcc_stop() { if [[ -f "$copydir/run/distcc-tool.pid" ]]; then - odaemon=$(cat "$copydir/distcc-tool.pid") + odaemon=$(< "$copydir/distcc-tool.pid") kill -- "$odaemon" rm -f -- \ |