From 6489418a88a990b77e808615b6cee632a0a43cda Mon Sep 17 00:00:00 2001 From: Boy van Amstel Date: Wed, 31 Aug 2011 15:52:01 +0200 Subject: [PATCH] wpcreate now removes the .git folder and .gitignore after cloning wpprojectcreator --- wpcreate | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wpcreate b/wpcreate index f2668c0..3f4f7f7 100755 --- a/wpcreate +++ b/wpcreate @@ -12,5 +12,9 @@ shift # Clone wpprojectcreator git clone git://github.com/boyvanamstel/Wordpress-Project-Creator.git . +# Remove the .git folder and .gitignore +rm -rf .git +rm .gitignore + # Run it with parameters python wpprojectcreator.py $@