Skip to content

Commit

Permalink
proper quoting of shell variable in tag message
Browse files Browse the repository at this point in the history
  • Loading branch information
benkirk committed Jul 18, 2013
1 parent 507071f commit bdfb099
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions contrib/bin/create_libmesh_release.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

#!/bin/sh


Expand Down Expand Up @@ -42,15 +41,15 @@ tagname=$release #`echo $release | sed -e "s/[.]/_/g"`
#
echo ""
echo "Creating distribution files..."
make dist >/dev/null || exit
make dist >/dev/null || exit
ls -l libmesh*.tar.*

#
# tag the current libmesh/master git repository for this release
#
echo ""
echo "Tagging master git repository as \"$tagname\""
git tag -a $tagname -m 'tagging libMesh $tagname'
git tag -a $tagname -m "tagging libMesh $tagname"
#git push origin $tagname

#
Expand Down

0 comments on commit bdfb099

Please sign in to comment.