mirror of https://github.com/explosion/spaCy.git
Add make clean command
This commit is contained in:
parent
12f09313b1
commit
5435b071b9
7
Makefile
7
Makefile
|
@ -13,3 +13,10 @@ dist/spacy.pex :
|
||||||
pex dist/*.whl -e spacy -o dist/spacy-$(sha).pex
|
pex dist/*.whl -e spacy -o dist/spacy-$(sha).pex
|
||||||
cp dist/spacy-$(sha).pex dist/spacy.pex
|
cp dist/spacy-$(sha).pex dist/spacy.pex
|
||||||
chmod a+rx dist/spacy.pex
|
chmod a+rx dist/spacy.pex
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
clean : setup.py
|
||||||
|
source env3.6/bin/activate
|
||||||
|
rm -rf dist/*
|
||||||
|
python setup.py clean --all
|
||||||
|
|
Loading…
Reference in New Issue