Make upload aware of new development location

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@3580 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2006-02-24 19:53:09 +00:00
parent 49b4b808ab
commit 595df36acb

View File

@ -1,6 +1,13 @@
#/bin/sh
DEST="root@mail.shorewall.net:/srv/ftp/pub/shorewall/${1%.*}/shorewall-$1"
case $1 in
3.1.*)
DEST="root@mail.shorewall.net:/srv/ftp/pub/shorewall/development/${1%.*}/shorewall-$1"
;;
*)
DEST="root@mail.shorewall.net:/srv/ftp/pub/shorewall/${1%.*}/shorewall-$1"
;;
esac
usage() { echo "$0: <version>"; }