Remove 'git stash' commands from 'prod' recipe: it caused odd side-effects on pristine local repositories

pull/195/merge
Patrice Levesque 2016-02-04 15:03:41 -05:00
parent a49bb9ab03
commit 1d868ff73c
1 changed files with 0 additions and 2 deletions

View File

@ -23,13 +23,11 @@ dev:
grunt --stack build
prod:
git stash
grunt --stack build
git update-index --no-assume-unchanged $(CSS_FILES) $(JS_FILES) $(JS_LIB_FILES)
git add -f $(CSS_FILES) $(JS_FILES) $(JS_LIB_FILES)
git commit -m "(js/css) Update generated files"
git update-index --assume-unchanged $(CSS_FILES) $(JS_FILES) $(JS_LIB_FILES)
git stash pop
all:
@echo "The 'all' target does nothing. Use 'make dev' to generate static files and 'make install' to install them."