ignore build directories & .gitignore file

This commit is contained in:
Dave Murphy 2012-03-31 19:02:16 +01:00
parent ea304bc7bf
commit 9f6b697806

5
makedist.sh Normal file → Executable file
View File

@ -1,3 +1,6 @@
#!/bin/sh
DATESTRING=$(date +%Y)$(date +%m)$(date +%d)
cd .. && tar --exclude=*CVS* --exclude=.svn --exclude=.git --exclude=*.log --exclude=*.bz2 --exclude=*.gz --exclude=config.sh -cvjf buildscripts-$DATESTRING.tar.bz2 buildscripts
cd .. && tar --exclude=*CVS* --exclude=.svn --exclude=.git --exclude=*.log --exclude=*.bz2 \
--exclude=*.gz --exclude=config.sh --exclude=.devkitARM --exclude=.devkitPPC \
--exclude=.devkitPSP --exclude=.gitignore \
-cvjf buildscripts-$DATESTRING.tar.bz2 buildscripts