Skip to content

Commit

Permalink
Fix make uninstall (#288)
Browse files Browse the repository at this point in the history
SHARE_PATH is a directory, so we need rm -r
  • Loading branch information
denizdogan authored Nov 27, 2021
1 parent b733fbe commit 2b3140b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ install: build

uninstall:
rm -f $(INSTALL_PATH)
rm -f $(SHARE_PATH)
rm -rf $(SHARE_PATH)

format_code:
swiftformat Tests --wraparguments beforefirst --stripunusedargs closure-only --header strip --disable blankLinesAtStartOfScope
Expand Down

0 comments on commit 2b3140b

Please sign in to comment.