Skip to content

Commit

Permalink
fix: create install path if it does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
socsieng committed Dec 30, 2020
1 parent 7045fc2 commit fac505f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ build:

.PHONY: install
install: build
@install -d "$(bindir)"
@install ".build/release/sendkeys" "$(bindir)/sendkeys"

.PHONY: uninstall
uninstall:
rm -rf "$(bindir)/sendkeys"
@rm -rf "$(bindir)/sendkeys"

.PHONY: clean
clean:
rm -rf .build/release
@rm -rf .build/release

0 comments on commit fac505f

Please sign in to comment.