File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ VENV_FLEX?=.env_flex
77
88help :
99 @echo " Please use \` make <target>' where <target> is one of"
10+ @echo " setup to setup the virtualenv and git hook."
1011 @echo " venv to build the working virtual environment for the"
1112 @echo " standard environment application, and to install"
1213 @echo " requirements for deployment."
2223
2324# Consciously avoiding "all" target because we may want to use it for building
2425# the actual product rather than a sane testing environment.
26+ setup : venv
27+ ln ./resources/dot-git-hooks-pre-commit .git/hooks/pre-commit
28+ chmod +x .git/hooks/pre-commit
29+
2530venv : virtualenv_std requirements_std appenginesdk
2631
2732venv_flex : virtualenv_flex requirements_flex
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ make pyflakes
You can’t perform that action at this time.
0 commit comments