mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 02:01:03 +00:00
16 lines
257 B
Text
16 lines
257 B
Text
|
#!/bin/sh -e
|
||
|
|
||
|
# The directory in which to find the last snapshot
|
||
|
dir=${HOME}/gnu/releases
|
||
|
|
||
|
# The name of this module
|
||
|
module=gstep-base
|
||
|
|
||
|
. Version
|
||
|
|
||
|
cvs -Q rtag -F release-`echo ${VERSION} | tr . -` $module
|
||
|
|
||
|
make dist
|
||
|
|
||
|
mv -f ${module}-${VERSION}.tar.gz $dir
|