Skip to content

Commit

Permalink
Added clean-starter-site task
Browse files Browse the repository at this point in the history
  • Loading branch information
yaph committed May 3, 2015
1 parent 454b57c commit 4852433
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ help:
@echo "clean - remove all build, test, coverage and Python artifacts"
@echo "clean-build - remove build artifacts"
@echo "clean-pyc - remove Python file artifacts"
@echo "clean-starter-site - remove deploy directory from starter site"
@echo "clean-test - remove test and coverage artifacts"
@echo "lint - check style with flake8"
@echo "test - run tests quickly with the default Python"
Expand All @@ -14,7 +15,7 @@ help:
@echo "release - package and upload a release"
@echo "dist - package"

clean: clean-build clean-pyc clean-test
clean: clean-build clean-pyc clean-starter-site clean-test

clean-build:
rm -fr build/
Expand All @@ -27,12 +28,15 @@ clean-pyc:
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +

clean-starter-site:
rm -fr logya/sites/starter/deploy/

clean-test:
rm -fr .tox/
rm -f .coverage
rm -fr htmlcov/

install:
install: clean
python setup.py install

uninstall:
Expand Down
1 change: 1 addition & 0 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ pep8==1.6.2
flake8==2.4.0
pyflakes==0.8.1
nose==1.3.6
tox==1.9.2

0 comments on commit 4852433

Please sign in to comment.