From dc1f8f9501c97d6e6aa71e29313d46cff7479ae8 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Mon, 8 Jun 2020 05:40:38 +0400 Subject: [PATCH] Makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9b0da25..6d7a090 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,9 @@ build: piggybank setup.cfg README.md install: python -m pip install --upgrade dist/piggybank-1.0.0-py3-none-any.whl --user uninstall: + # We change directory so pip uninstall will run, it'll fail otherwise. + @cd ~/ python -m pip uninstall piggybank clean: - rm -rf piggybank/__pycache__ piggybank/cli/__pycache__ \ + rm -rf __pycache__ piggybank/__pycache__ piggybank/cli/__pycache__ \ build piggybank.egg-info \ No newline at end of file