From fac505f7e920f50f18b4cf573cf5ce50c5963ebb Mon Sep 17 00:00:00 2001 From: Soc Sieng Date: Tue, 29 Dec 2020 19:03:29 -0800 Subject: [PATCH] fix: create install path if it does not exist --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8ee3979..a0da642 100644 --- a/Makefile +++ b/Makefile @@ -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