ClassicalMistakes:Developers
De LevhitaWiki
Here you can find info about the arquitecture, and methodologies of ClassicalMistakes.
Tabla de contenidos |
Packager Script
#!/bin/bash
#Author Argel Arias <levhita@gmail.com>
#Set this to the folder that you wan't to package (without the trailing slash '/')
dir="classical_mistakes"
echo "**CLASSICAL MISTAKES PACKAGER**"
echo "Deleting old package:"
echo "$dir/$dir.tar.gz ..."
rm $dir/$dir.tar.gz
echo "Deleting backup files *~"
find $dir/ -iname "*~" -exec rm {} \;
echo "Creating the new package..."
tar -cvz --exclude=.svn --file $dir.tar.gz $dir/
echo "New package created:"
echo "$dir/$dir.tar.gz"
mv $dir.tar.gz $dir/

