aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2016-12-02 10:01:09 +0000
committerGitHub2016-12-02 10:01:09 +0000
commit5bbd64141e45d5fa2487b2bfe38299f07ba444d1 (patch)
tree1b0685246748f9ba7829150eb5ca0b5cf5f0f1c4
parent8f82e89d0b26108e32a10b5d95b67e5e21ff0df6 (diff)
parentbff8e8440e965365360547c585dd10c29cc2bf81 (diff)
downloadbrew-5bbd64141e45d5fa2487b2bfe38299f07ba444d1.tar.bz2
Merge pull request #1604 from bfontaine/pkill
update.sh: Use full path to pkill
-rw-r--r--Library/Homebrew/cmd/update.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/update.sh b/Library/Homebrew/cmd/update.sh
index 5c72c24f9..678622230 100644
--- a/Library/Homebrew/cmd/update.sh
+++ b/Library/Homebrew/cmd/update.sh
@@ -417,7 +417,7 @@ EOS
safe_cd "$HOMEBREW_REPOSITORY"
# kill all of subprocess on interrupt
- trap '{ pkill -P $$; wait; exit 130; }' SIGINT
+ trap '{ /usr/bin/pkill -P $$; wait; exit 130; }' SIGINT
local update_failed_file="$HOMEBREW_REPOSITORY/.git/UPDATE_FAILED"
rm -f "$update_failed_file"