Skip to content

Commit

Permalink
Merge pull request #2 from tbunnyman/makefile
Browse files Browse the repository at this point in the history
Fix find commands in makefile
  • Loading branch information
JackStouffer committed Sep 26, 2013
2 parents 1c0d73f + 1e0106c commit d47b42c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ deps:
pip install -r requirements.txt

clean:
rm -fr build \
rm -fr dist \
find . -name '*.pyc' -exec rm -f {} \
find . -name '*.pyo' -exec rm -f {} \
find . -name '*~' -exec rm -f {}
rm -fr build
rm -fr dist
find . -name '*.pyc' -exec rm -f {} \;
find . -name '*.pyo' -exec rm -f {} \;
find . -name '*~' -exec rm -f {} \;

lint:
flake8 appname
Expand Down

0 comments on commit d47b42c

Please sign in to comment.