summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cron-jobs/make_repo_torrents3
1 files changed, 2 insertions, 1 deletions
diff --git a/cron-jobs/make_repo_torrents b/cron-jobs/make_repo_torrents
index 246264d..797142e 100644
--- a/cron-jobs/make_repo_torrents
+++ b/cron-jobs/make_repo_torrents
@@ -93,7 +93,8 @@ do
# There should not be a random comma at the end of the webseeds
webseeds="${webseeds%,}"
- mktorrent -a "${tracker}" "${pkg}" -w "${webseeds}" # "${torrent_location}"
+ mktorrent -a "${tracker}" "${pkg}" -w "${webseeds}" >/dev/null ||
+ echo "Error making torrent for \"${pkg}\""
fi
done
done