remove package creation script from branch

This commit is contained in:
Andreas Gerlach
2014-07-28 16:26:12 +02:00
parent f680186675
commit 3b9f5458ff

View File

@@ -1,13 +0,0 @@
#!/bin/bash
echo creating file list
find . -type f > ../filelist && find . -type l >> ../filelist && cut -c2- ../filelist > filelist
echo creating directory list
find . -type d > ../dlist && cut -c2- ../dlist > dlistcut && tail -n +2 dlistcut > dlist
echo removing temporary files
rm dlistcut ../dlist ../filelist
echo building binary package
tar -czf ../package.tar.gz *