Skip to content

Commit

Permalink
Revert "Fix script removal (LukeSmithxyz#310)"
Browse files Browse the repository at this point in the history
This reverts commit 4904fcf.
  • Loading branch information
LukeSmithxyz committed Nov 24, 2019
1 parent 02b8e2a commit 15941b4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ install:
cp -f mw.1 $(DESTDIR)$(MANPREFIX)/man1/mw.1

uninstall:
for scriptPath in bin/*; do \
scriptFile=$$(basename $$scriptPath); \
rm -f $(DESTDIR)$(PREFIX)/bin/$$scriptFile; \
for script in bin/*; do \
rm -f $(DESTDIR)$(PREFIX)/bin/$$script; \
done
rm -rf $(DESTDIR)$(PREFIX)/share/mutt-wizard
rm -f $(DESTDIR)$(MANPREFIX)/man1/mw.1
Expand Down

0 comments on commit 15941b4

Please sign in to comment.