diff options
author | Antonio Garcia-Dominguez <antonio.garciadominguez@uca.es> | 2012-04-16 18:09:09 +0200 |
---|---|---|
committer | Antonio Garcia-Dominguez <antonio.garciadominguez@uca.es> | 2012-04-16 18:09:09 +0200 |
commit | 329751ca1bd211d4c759070d2481e2889c67201d (patch) | |
tree | 96b20e70cd1f49eabac3f1cef1eb3009cbe47883 /prepare-videochat.sh | |
parent | 76fee1f7baeee9d226c77402b45310caae873ffe (diff) |
Avoid spurious 'which' messages in Arch
Diffstat (limited to 'prepare-videochat.sh')
-rwxr-xr-x | prepare-videochat.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prepare-videochat.sh b/prepare-videochat.sh index a7b5420..35da6fe 100755 --- a/prepare-videochat.sh +++ b/prepare-videochat.sh @@ -74,7 +74,7 @@ confirm() { can_run() { # It's either the path to a file, or the name of an executable in $PATH - (test -x "$1" || which "$1") >/dev/null + (test -x "$1" || which "$1") &>/dev/null } start_adb() { |