From 5ffdfb5e4000abb88c2e817bb5d3f43403886a91 Mon Sep 17 00:00:00 2001 From: Brian Barto Date: Tue, 17 Jan 2017 19:39:16 -0500 Subject: [PATCH] Substitute the conditional checks with a 'rm -f' modified: Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 44129d5..910e4ea 100644 --- a/Makefile +++ b/Makefile @@ -43,5 +43,5 @@ install: cd $(BIN) && install * $(DESTDIR)$(bindir) uninstall: - if [ -f $(DESTDIR)$(bindir)/nms ]; then rm $(DESTDIR)$(bindir)/nms; fi; - if [ -f $(DESTDIR)$(bindir)/sneakers ]; then rm $(DESTDIR)$(bindir)/sneakers; fi; + rm -f $(DESTDIR)$(bindir)/nms; + rm -f $(DESTDIR)$(bindir)/sneakers;