skip replacing variables inside .git/* files

This commit is contained in:
Jason Carver 2018-01-24 16:24:31 -08:00
parent 3d87ff7153
commit cdba56a295

View File

@ -5,7 +5,7 @@ set -o nounset
set -o pipefail
# List of all non-executable files
TEMPLATE_FILES=$(find . ! -perm -u=x -type f)
TEMPLATE_FILES=$(find . ! -perm -u=x -type f | grep -v "\.git")
echo "What is your python module name?"
read MODULE_NAME