From 190ae631e513df58b990143adb167acb4cffdd2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miodrag=20Toki=C4=87?= Date: Sun, 3 Feb 2019 18:06:31 +0100 Subject: [PATCH] Straightforward binary removal Remove binary using the full path instead of jumping to directory. --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 549ac89..31efb23 100644 --- a/Makefile +++ b/Makefile @@ -22,9 +22,7 @@ install: @$(TASK_DONE) uninstall: - test -d $(PREFIX)/bin && \ - cd $(PREFIX)/bin && \ - rm -f git-quick-stats && \ + rm -f $(PREFIX)/bin/git-quick-stats git config --global --unset alias.quick-stats @$(TASK_DONE)