summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Garcia-Dominguez <antonio.garciadominguez@uca.es>2012-04-16 18:09:09 +0200
committerAntonio Garcia-Dominguez <antonio.garciadominguez@uca.es>2012-04-16 18:09:09 +0200
commit329751ca1bd211d4c759070d2481e2889c67201d (patch)
tree96b20e70cd1f49eabac3f1cef1eb3009cbe47883
parent76fee1f7baeee9d226c77402b45310caae873ffe (diff)
Avoid spurious 'which' messages in Arch
-rwxr-xr-xprepare-videochat.sh2
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() {