389-ds-base/389-ds-base-git-local.sh

24 lines
393 B
Bash
Raw Normal View History

#!/bin/bash
DATE=`date +%Y%m%d`
# use a real tag name here
VERSION=1.2.6
PKGNAME=389-ds-base
2009-12-02 18:17:04 +00:00
TAG=${TAG:-$PKGNAME-$VERSION}
#SRCNAME=$PKGNAME-$VERSION-$DATE
SRCNAME=$PKGNAME-$VERSION
echo you must be in the ds git repo to use this
test -d .git || {
echo bye
exit 1
}
if [ -z "$1" ] ; then
dir=.
else
dir="$1"
fi
git archive --prefix=$SRCNAME/ $TAG | bzip2 > $dir/$SRCNAME.tar.bz2