aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/releng/makerel.sh
diff options
context:
space:
mode:
Diffstat (limited to 'releng/makerel.sh')
-rwxr-xr-xreleng/makerel.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/releng/makerel.sh b/releng/makerel.sh
index 09b1f90..75d1f8c 100755
--- a/releng/makerel.sh
+++ b/releng/makerel.sh
@@ -4,6 +4,7 @@
4 4
5export OPENSIMMAJOR=0 5export OPENSIMMAJOR=0
6export OPENSIMMINOR=1 6export OPENSIMMINOR=1
7export BUILD=`date +%s`
7export BRANCH=DEVEL 8export BRANCH=DEVEL
8export SVNURL=svn://openmetaverse.org/opensim/trunk 9export SVNURL=svn://openmetaverse.org/opensim/trunk
9 10
@@ -17,8 +18,8 @@ export SVNURL=svn://openmetaverse.org/opensim/trunk
17./createreldir.sh 18./createreldir.sh
18rm -rf build 19rm -rf build
19 20
20tar cvf opensim-$OPENSIMMAJOR.$OPENSIMMINOR-`date +%s`-$BRANCH.tar opensim-$OPENSIMMAJOR.$OPENSIMMINOR/* 21tar cvf opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BUILD-$BRANCH.tar opensim-$OPENSIMMAJOR.$OPENSIMMINOR/*
21gzip opensim-$OPENSIMMAJOR.$OPENSIMMINOR-`date +%s`-$BRANCH.tar 22gzip opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BUILD-$BRANCH.tar
22 23
23echo "Produced binary tarball ready for distribution." 24echo "Produced binary tarball ready for distribution."
24 25