index : releng | |
Archlinux32 release engineering | gitolite user |
summaryrefslogtreecommitdiff |
author | Simon Doppler <dopsi@dopsi.ch> | 2017-10-08 16:05:13 +0200 |
---|---|---|
committer | Simon Doppler <dopsi@dopsi.ch> | 2017-10-08 16:05:13 +0200 |
commit | 9800ba434829ec3f782c4c8ed1ee7faa6d240dae (patch) | |
tree | e4f337c3d2352cd42ff6f6a16b59dd2522084946 /al32-mktorrent.sh | |
parent | 066a53bb91275b8d130913e2b54fbb09278eb145 (diff) |
-rw-r--r-- | al32-mktorrent.sh | 4 |
diff --git a/al32-mktorrent.sh b/al32-mktorrent.sh index 1d9d7c2..45ba288 100644 --- a/al32-mktorrent.sh +++ b/al32-mktorrent.sh @@ -104,7 +104,7 @@ function upload_file_to_remote_dir { ### Check for if required programs are present -which mktorrent 2>/dev/null || ( +which mktorrent 2>&1 >/dev/null || ( echo "Missing mktorrent" exit 1 ) @@ -114,7 +114,7 @@ python -c "import feedgenerator" 2>/dev/null || ( exit 1 ) -which transmission-show 2>/dev/null || ( +which transmission-show 2>&1 >/dev/null || ( echo "Missing transmission-show" exit 1 ) |