exclude .git dirs

This commit is contained in:
Dave Murphy 2012-03-31 16:59:24 +01:00
parent 64a8a5072c
commit b48a34f5a7

View File

@ -1,5 +1,3 @@
#!/bin/sh
make -C tools clean
DATESTRING=$(date +%Y)$(date +%m)$(date +%d)
chmod +x build-devkit.sh
cd .. && tar --exclude=*CVS* --exclude=.svn --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 -cvjf buildscripts-$DATESTRING.tar.bz2 buildscripts