Commit 3b9f5458 authored by Andreas Gerlach's avatar Andreas Gerlach

remove package creation script from branch

parent f6801866
#!/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 *
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment