From 1ade71e53ca5fe83185be0b7895f1e38e2746fc9 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 10 Mar 2013 13:19:55 +0000 Subject: [PATCH] [scripts] make public torrents (adding -pub), which enables PeX --- scripts/make_torrents.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make_torrents.sh b/scripts/make_torrents.sh index 11992fe..b3de57a 100755 --- a/scripts/make_torrents.sh +++ b/scripts/make_torrents.sh @@ -24,5 +24,5 @@ for iso_file in "${iso_dir}"/*.{iso,tar.gz,tar.xz}; do [[ -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 + mktorrent-borg -pub -nd -a "${announce_url}" -n "${iso_name}" -o "${torrent_file}" "${iso_file_name}" || exit 1 done