Skip to content

Commit

Permalink
tools: don't use clean target in metaclean
Browse files Browse the repository at this point in the history
The clean target relies on the coverage tool being installed.
  • Loading branch information
daviddrysdale committed Nov 6, 2022
1 parent fe2f0c1 commit 5963b05
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/python/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,12 @@ clean: coverage_clean profile_clean
rm -rf $(PYDIR)/tests/__pycache__ $(PYDIR)/tests/testdata/__pycache__ $(PYDIR)/tests/testgeodata/__pycache__ $(PYDIR)/tests/testcarrierdata/__pycache__
rm -rf $(PYDIR)/build $(PYDIR)/deb_dist $(PYDIR)/dist

metaclean: clean
metaclean:
rm -rf $(PYDIR)/phonenumbers/data $(PYDIR)/phonenumbers/shortdata $(PYDIR)/tests/testdata
rm -rf $(PYDIR)/phonenumbers/geodata/__init__.py*
rm -rf $(PYDIR)/phonenumbers/geodata/data*.py*
rm -f $(PYDIR)/phonenumbers/geodata/*.pyc
rm -rf $(PYDIR)/phonenumbers/geodata/__pycache__
rm -rf $(PYDIR)/tests/testgeodata
rm -rf $(PYDIR)/phonenumbers/carrierdata $(PYDIR)/tests/testcarrierdata
rm -rf $(PYDIR)/phonenumbers/tzdata $(PYDIR)/tests/testtzdata
Expand Down

0 comments on commit 5963b05

Please sign in to comment.