Improve Gambit REPL (toolbar is semi transparent and the alpha can be set with set...
[gambit-c.git] / misc / publish-release
blob8bfd4d1189a8aefff5a409662a018d0babcb287b
1 #! /bin/sh
3 # Usage: publish-release <version> <sources-tgz> <sources-tgz-devel> <prebuilt>...
5 VERSION="$1"
6 shift
7 TGZ="$1"
8 shift
9 TGZ_DEVEL="$1"
10 shift
11 PREBUILT="$*"
13 echo "These files will be published for version $VERSION:"
14 echo " ==> $TGZ"
15 echo " ==> $TGZ_DEVEL"
16 for file in $PREBUILT; do
17 echo " ==> $file"
18 done
19 echo "You will have to enter the Gambit web site password to confirm the operation."
20 echo ""
22 tar cf - $TGZ $TGZ_DEVEL $PREBUILT | ssh -o PreferredAuthentications=keyboard-interactive,password gambit@frontal.iro.umontreal.ca "rm -rf release-$VERSION;mkdir release-$VERSION;(cd release-$VERSION && tar xvf -);bin/publish-release $VERSION $TGZ $TGZ_DEVEL $PREBUILT;rm -rf release-$VERSION"