Update of /cvsroot/ruby-dbi/src/build
In directory usw-pr-cvs1:/tmp/cvs-serv1400
Modified Files:
package.sh
Log Message:
Index: package.sh
===================================================================
RCS file: /cvsroot/ruby-dbi/src/build/package.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- package.sh 3 Oct 2002 09:49:48 -0000 1.1
+++ package.sh 3 Oct 2002 09:52:02 -0000 1.2
@@ -10,18 +10,22 @@
dialog --yesno "Modified lib/dbi/version.rb?" 8 40
if [ $? != 0 ]; then
dialog --msgbox "Exiting! Please modify lib/dbi/version.rb appropriately, before trying again." 8 40
+ rm -rf work/
exit 1
fi
dialog --yesno "Added release date of new version in build/DBI-VERSIONS?" 8 40
if [ $? != 0 ]; then
dialog --msgbox "Exiting! Please modify build/DBI-VERSIONS appropriately, before trying again." 8 40
+ rm -rf work/
exit 1
fi
+
dialog --inputbox "Tagged repository (e.g. cvs tag dbi-0-0-17)? Enter tag (without preceeding 'dbi-') below or choose 'Cancel'" 12 40 "0-0-" 2> work/VERSION
if [ $? != 0 ]; then
dialog --msgbox "Exiting! Please tag repository, before trying again." 8 40
+ rm -rf work/
exit 1
fi
VERSION=`cat work/VERSION`
|