libs-base/make-snapshot
mccallum 75ff5d3626 (dir): Make it an absolute path, instead of relative.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1563 72102866-910b-0410-8b05-ffd578937521
1996-05-27 15:22:41 +00:00

24 lines
530 B
Bash
Executable file

#!/bin/sh -e
# The directory in which to find the last snapshot
dir=/home/mccallum/gnu/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