]> git.stg.codes - stg.git/blob - projects/make_tarball/make.sh
33a24dbf334bb6ed6116a0dbf408d83d69c98ab1
[stg.git] / projects / make_tarball / make.sh
1 #!/bin/sh
2
3 SRC_DIR=stg-2.4-`date "+%Y.%m.%d-%H.%M.%S"`
4 ARC_NAME=$SRC_DIR.tar.gz
5
6 git clone git://madf.dyndns.org/stg.git $SRC_DIR
7
8 if [ $? != 0 ]
9 then
10     echo "Failed to clone repository"
11     exit -1
12 fi
13
14 rm -rf $SRC_DIR/.git
15 rm -r $SRC_DIR/projects/make_tarball
16 rm -r $SRC_DIR/projects/traffcounter
17 rm -r $SRC_DIR/projects/stargazer/plugins/other/userstat
18 rm -r $SRC_DIR/projects/stargazer/plugins/authorization/stress
19 rm -r $SRC_DIR/projects/stargazer/plugins/store/db
20
21 tar -zcf $ARC_NAME $SRC_DIR