diff options
author | Simon Doppler <dopsi@dopsi.ch> | 2017-09-04 19:10:06 +0200 |
---|---|---|
committer | Simon Doppler <dopsi@dopsi.ch> | 2017-09-04 19:12:52 +0200 |
commit | b335dfa09811806bed1cf2891ed5ffa88d471f09 (patch) | |
tree | 763240123b78a1caef9611d83bdc5041e5149f66 | |
parent | 3c1c5f7fd21a67d650d5906fe2d6ff1248de1903 (diff) | |
download | releng-b335dfa09811806bed1cf2891ed5ffa88d471f09.tar.xz |
Add check for transmission-show
-rw-r--r-- | al32-mktorrent.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/al32-mktorrent.sh b/al32-mktorrent.sh index f6b697e..994820f 100644 --- a/al32-mktorrent.sh +++ b/al32-mktorrent.sh @@ -114,6 +114,11 @@ python -c "import feedgenerator" 2>/dev/null || ( exit 1 ) +which transmission-show 2>/dev/null || ( + echo "Missing transmission-show" + exit 1 +) + ### Actual program declare -a architectures=("i686" "dual") |