Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update tracker-add-auto.sh
The same behavior described in 04d5da1 applies here
  • Loading branch information
Javinator9889 authored May 25, 2020
commit 6ef556358c412bab69e3551a7a441c7e7478e34d
4 changes: 2 additions & 2 deletions tracker-add-auto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ fi
for tracker in $(cat $trackerslist) ; do
echo -n "${tracker}..."
if transmission-remote "$host" --auth="$auth" --torrent "${torrent_hash}" -td "${tracker}" | grep -q 'success'; then
echo ' failed.'
else
echo ' done.'
else
echo ' already added.'
fi
done
done
Expand Down