summaryrefslogtreecommitdiff
path: root/al32-mktorrent.sh
diff options
context:
space:
mode:
authorSimon Doppler <dopsi@dopsi.ch>2017-10-08 16:05:13 +0200
committerSimon Doppler <dopsi@dopsi.ch>2017-10-08 16:05:13 +0200
commit9800ba434829ec3f782c4c8ed1ee7faa6d240dae (patch)
treee4f337c3d2352cd42ff6f6a16b59dd2522084946 /al32-mktorrent.sh
parent066a53bb91275b8d130913e2b54fbb09278eb145 (diff)
downloadreleng-9800ba434829ec3f782c4c8ed1ee7faa6d240dae.tar.xz
Remove annoying messages
Diffstat (limited to 'al32-mktorrent.sh')
-rw-r--r--al32-mktorrent.sh4
1 files changed, 2 insertions, 2 deletions
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
)