Automatic commit with j

This commit is contained in:
Thomas Levine 2016-04-01 18:21:01 +00:00
parent b402f466b5
commit a5ffad0446
1 changed files with 4 additions and 2 deletions

View File

@ -1,9 +1,11 @@
#!/bin/sh
name=urchin-$(../urchin --version)
tmp=$(mktemp -d)
mkdir $tmp/urchin
cp ../urchin ../readme.md ../AUTHORS ../COPYING $tmp/urchin
cd $tmp
tar czf urchin.tar.gz urchin
tar czf $name.tar.gz $name
cd - > /dev/null
mv $tmp/urchin.tar.gz .
mv $tmp/$name.tar.gz .
rm -R $tmp