Skip to content
Snippets Groups Projects
Commit 391e1acc authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

[#14162] Fix version number for stable release

parent e9078e18
Branches
Tags
No related merge requests found
...@@ -12,12 +12,12 @@ if [ ! -e daemon/configure.ac ] ; then ...@@ -12,12 +12,12 @@ if [ ! -e daemon/configure.ac ] ; then
fi fi
if [ "z$1" = "z" ] ; then if [ "z$1" = "z" ] ; then
echo "Usage: $0 VERSION_NUMBER" echo "Usage: $0 SOFTWARE_VERSION_NUMBER"
exit 2 exit 2
fi fi
VERSION=$1 SOFTWARE_VERSION=$1
BUILDDIR=sflphone-$VERSION BUILDDIR=sflphone-$SOFTWARE_VERSION
if [ -e $BUILDDIR ] ; then if [ -e $BUILDDIR ] ; then
echo "The build directory ($BUILDDIR) already exists. Delete it first." echo "The build directory ($BUILDDIR) already exists. Delete it first."
...@@ -98,5 +98,5 @@ find -name *.in~ -type f -exec rm {} \; ...@@ -98,5 +98,5 @@ find -name *.in~ -type f -exec rm {} \;
popd # builddir popd # builddir
rm -f sflphone-*.tar.gz rm -f sflphone-*.tar.gz
tar zcf sflphone-$VERSION.tar.gz sflphone-$VERSION tar zcf sflphone-$SOFTWARE_VERSION.tar.gz sflphone-$SOFTWARE_VERSION
rm -rf $BUILDDIR rm -rf $BUILDDIR
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment