Push script excludes all git* fix

This commit is contained in:
Pieter Holtzhausen
2011-07-04 22:23:12 +02:00
parent de4a853ecf
commit f3406bc355
+1 -1
View File
@@ -42,7 +42,7 @@ sed -i 's/_static/static/g' `find . -name "*.html"`
sed -i 's/_images/images/g' `find . -name "*.html"`
mv _static static
mv _images images
for f in `find . | grep "./" | grep -v ".git"`; do
for f in `find . | grep "./" | grep -v "\.git"`; do
git add $f
done