[Scummlinux-cvs-logs] scummlinux/scripts generator,1.20,1.21
Brought to you by:
yoshizf
From: <yo...@us...> - 2003-07-28 18:01:38
|
Update of /cvsroot/scummlinux/scummlinux/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv24020/scripts Modified Files: generator Log Message: We zip the win32 build Index: generator =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/scripts/generator,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** generator 28 Jul 2003 16:05:09 -0000 1.20 --- generator 28 Jul 2003 18:01:35 -0000 1.21 *************** *** 43,46 **** --- 43,54 ---- cp COPYING $GENERATOR_NAME/COPYING echo `cat VERSION`-custom > $GENERATOR_NAME/VERSION + + if [ $OS = "win32" ]; then + zip -r -9 $GENERATOR_NAME.zip $GENERATOR_NAME + fi + + if [ $OS = "linux" ]; then tar czf $GENERATOR_NAME.tar.gz $GENERATOR_NAME + fi + rm -rf $GENERATOR_NAME |