Fix release script

Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
This commit is contained in:
Stephen Smalley 2016-10-14 11:36:11 -04:00
parent b4cca24240
commit b5f2652a11
1 changed files with 7 additions and 7 deletions

View File

@ -3,11 +3,11 @@
PWD=`pwd` PWD=`pwd`
WIKIDIR=../selinux.wiki WIKIDIR=../selinux.wiki
if [ \! -d $(WIKIDIR) ]; then if [ \! -d $WIKIDIR ]; then
git clone git@github.com:SELinuxProject/selinux.wiki.git $(WIKIDIR) git clone git@github.com:SELinuxProject/selinux.wiki.git $WIKIDIR
fi fi
DEST=$(WIKIDIR)/files/releases/$(date '+%Y%m%d') DEST=$WIKIDIR/files/releases/$(date '+%Y%m%d')
DIRS="libsepol libselinux libsemanage policycoreutils checkpolicy secilc sepolgen" DIRS="libsepol libselinux libsemanage policycoreutils checkpolicy secilc sepolgen"
git tag -a $(date '+%Y%m%d') -m "Release $(date '+%Y%m%d')" git tag -a $(date '+%Y%m%d') -m "Release $(date '+%Y%m%d')"
@ -26,9 +26,9 @@ done
cd $DEST cd $DEST
git add files/releases/$(date '+%Y%m%d') git add .
echo "Add the following to the $(WIKIDIR)/Releases.md wiki page:" echo "Add the following to the $WIKIDIR/Releases.md wiki page:"
echo "" echo ""
@ -42,10 +42,10 @@ for i in *.tar.gz; do
done done
echo "And then run:" echo "And then run:"
echo "cd $(WIKIDIR)" echo "cd $WIKIDIR"
echo "git commit -m \"Release $(date '+%Y%m%d')\" -a -s" echo "git commit -m \"Release $(date '+%Y%m%d')\" -a -s"
echo "Push the release and its tags to git via:" echo "Push the release and its tags to git via:"
echo " cd $(PWD)" echo " cd $PWD"
echo " git push" echo " git push"
echo " git push --tags" echo " git push --tags"