mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix #1912 : Exit nicely from get_libtorrent.sh if svn not installed
This commit is contained in:
parent
307ffe734a
commit
3dcfa5cfd8
1 changed files with 5 additions and 0 deletions
|
@ -9,6 +9,11 @@ VERSION=15
|
|||
[ "$1" != "" ] && VERSION=$1
|
||||
BRANCH=branches/RC_0_$VERSION
|
||||
|
||||
if [ -z $SVN ]; then
|
||||
echo "Please install an 'svn' client"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -d libtorrent ]; then
|
||||
$SVN up libtorrent
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue