Skip to content

Commit

Permalink
Update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
rnixx committed Feb 7, 2023
1 parent 26adb78 commit ac1c9d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,8 @@ packages-dirty:
packages-clean:
@test -e $(FILES_TARGET) \
&& test -e $(MXENV_PATH)pip \
&& $(MXENV_PATH)pip uninstall -y -r $(FILES_TARGET)
&& $(MXENV_PATH)pip uninstall -y -r $(FILES_TARGET) \
|| :
@rm -f $(PACKAGES_TARGET)

INSTALL_TARGETS+=packages
Expand All @@ -310,7 +311,7 @@ cookiecutter-dirty:

.PHONY: cookiecutter-clean
cookiecutter-clean: cookiecutter-dirty
@test -e $(MXENV_PATH)pip && $(MXENV_PATH)pip uninstall -y cookiecutter
@test -e $(MXENV_PATH)pip && $(MXENV_PATH)pip uninstall -y cookiecutter || :
@rm -f $(COOKIECUTTER_TARGET)

DIRTY_TARGETS+=cookiecutter-dirty
Expand Down

0 comments on commit ac1c9d0

Please sign in to comment.