From 1dae75d78874fbe804e73e7399e66e6f1d95f90a Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Tue, 28 Sep 2010 21:02:54 +0200 Subject: [PATCH] [scripts] update make_torrents.sh add some more verbosity --- scripts/make_torrents.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/make_torrents.sh b/scripts/make_torrents.sh index 94c5be6..fd2ec42 100755 --- a/scripts/make_torrents.sh +++ b/scripts/make_torrents.sh @@ -12,5 +12,6 @@ for iso_file in "${iso_dir}"/*.{iso,tar.gz}; do torrent_file="${iso_file}.torrent" [[ -f "${torrent_file}" ]] && rm "${torrent_file}" iso_file_name="$(basename ${iso_file})" + echo "Cooking ${iso_file_name}" mktorrent-borg -nd -a "${announce_url}" -n "${iso_name}" -o "${torrent_file}" "${iso_file_name}" || exit 1 done