aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/releng/makerel.sh
diff options
context:
space:
mode:
authorAdam Frisby2007-06-19 04:04:28 +0000
committerAdam Frisby2007-06-19 04:04:28 +0000
commitb34d1c210e6cc599d0eb74c653dafd6bbb362770 (patch)
treea847917ad05728f1be62fc8e7b78e81dc76ef674 /releng/makerel.sh
parent*Added some missing files from last commit (diff)
downloadopensim-SC_OLD-b34d1c210e6cc599d0eb74c653dafd6bbb362770.zip
opensim-SC_OLD-b34d1c210e6cc599d0eb74c653dafd6bbb362770.tar.gz
opensim-SC_OLD-b34d1c210e6cc599d0eb74c653dafd6bbb362770.tar.bz2
opensim-SC_OLD-b34d1c210e6cc599d0eb74c653dafd6bbb362770.tar.xz
* Cleaning up unused zircon branch.
* Removed releng from sugilite.
Diffstat (limited to '')
-rw-r--r--releng/makerel.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/releng/makerel.sh b/releng/makerel.sh
deleted file mode 100644
index b7bc568..0000000
--- a/releng/makerel.sh
+++ /dev/null
@@ -1,30 +0,0 @@
1#!/bin/sh
2
3# This is the one!
4
5export OPENSIMMAJOR=0
6export OPENSIMMINOR=2
7export BUILD=`date +%s`
8export BRANCH=DEVEL
9export SVNURL=svn://openmetaverse.org/opensim/trunk
10
11
12
13
14
15# shouldn't have to change anything below here
16
17script dobuild.log -c "./dobuild.sh $SVNURL"
18if [ ! $? -eq 0 ]
19then
20 echo "Build failed!"
21else
22 script createrel.log -c ./createreldir.sh
23 rm -rf build
24 tar cvf opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BUILD-$BRANCH.tar opensim-$OPENSIMMAJOR.$OPENSIMMINOR/*
25 gzip opensim-$OPENSIMMAJOR.$OPENSIMMINOR-$BUILD-$BRANCH.tar
26fi
27
28rm -rf opensim-$OPENSIMMAJOR.$OPENSIMMINOR
29echo "Produced binary tarball ready for distribution."
30