libs-base/make-snapshot
mccallum 10c0067161 Changed from roland's version to something that makes sense for gstep-base.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1546 72102866-910b-0410-8b05-ffd578937521
1996-05-16 01:49:42 +00:00

24 lines
514 B
Bash
Executable file

#!/bin/sh -e
# The directory in which to find the last snapshot
dir=../releases
# The name of this module
module=gstep-base
date=`date +%y%m%d`
snap=${module}-${date}
cvs -Q rtag -F snapshot-$date $module
rm -rf $snap
# Checkout the $module into a directory named $snap
cvs -Q checkout -d $snap -r $snap $module
tar -f - -co $snap | gzip -9v -c > $snap.tar.gz
#find $snap \( -name CVS -prune \) -o \( -type f -print \) |
#xargs md5sum | gzip -9v -c > $snap.md5sum.gz
rm -rf $snap &
mv -f $snap.tar.gz $dir