#!/bin/sh commandsdir=`dirname "$0"` basedir=`dirname "$commandsdir"` 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/helpers/bashrc \ $rootdir/commands/helpers/find-free-display \ $rootdir/commands/helpers/list-outputs \ $rootdir/commands/helpers/ubuntu-tweaks \ $rootdir/commands/helpers/xinitrc \ $rootdir/commands/helpers/xephyr-window \ $rootdir/commands/helpers/get-screen-dpi \ $rootdir/commands/helpers/run-with-keyring \ $rootdir/commands/check-system \ $rootdir/commands/run-command \ $rootdir/commands/common.py \ $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