Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/build-snapshot
blob: 7aaa1eaf16a64d95a56b8125fce00c141135a5ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/sh

toolsdir=`dirname "$0"`
basedir=`dirname "$toolsdir"`

if [ "$#" -eq 0 ]; then
    echo "build-snapshot [destination directory]"
    exit 1
fi

destdir=`dirname $1`
filename=`basename $1`
rootdir=sugar-snapshot

mkdir -p $destdir
ln -s `pwd` $destdir/$rootdir

cd $destdir

tar chf $filename \
    $rootdir/config \
    $rootdir/devbot \
    $rootdir/install \
    $rootdir/commands/check-system \
    $rootdir/commands/common.py \
    $rootdir/commands/bashrc \
    $rootdir/commands/run \
    $rootdir/commands/shell

rm $rootdir
mkdir $rootdir

runsugarscript=$rootdir/run-sugar.sh

cat > $runsugarscript << "EOF"
#!/bin/sh

commands/run
EOF

chmod +x $runsugarscript

runshellscript=$rootdir/run-shell.sh

cat > $runshellscript << "EOF"
#!/bin/sh

commands/shell
EOF

chmod +x $runshellscript

tar rh -f $filename $runshellscript $runsugarscript

rm -rf $rootdir

xz $filename