From 94ea505dbd272d900c59725d352ed6ce5a303a11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miodrag=20Toki=C4=87?= Date: Sun, 3 Feb 2019 18:04:13 +0100 Subject: [PATCH] Replace "mkdir" with "install" Favour "install" over "mkdir" in installation scripts. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 653ada6..549ac89 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ help: @$(TASK_DONE) install: - mkdir -p $(PREFIX)/bin + install -d -m 0755 $(PREFIX)/bin install -m 0755 git-quick-stats $(PREFIX)/bin/git-quick-stats git config --global alias.quick-stats '! $(PREFIX)/bin/git-quick-stats' $(MAKE) man