commit 164e977f5647547c26a69ac2e0ef2c3a9e06583c
parent 7a322a38e5daed5ac6154e9d5cbfaab5387b2117
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date: Wed, 12 Nov 2025 20:16:00 +0000
Default make target also sets executable bit
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -1,5 +1,5 @@
# pashage - age-backed POSIX password manager
-# Copyright (C) 2024 Natasha Kerensikova
+# Copyright (C) 2024-2025 Natasha Kerensikova
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -19,6 +19,7 @@ PLATFORM != uname | cut -d _ -f 1 | tr '[:upper:]' '[:lower:]'
pashage: bin/pashage-$(PLATFORM).sh
cp -i "bin/pashage-$(PLATFORM).sh" "$@"
+ chmod a+x "$@"
.PHONY: all check clean cov1 cov2 tests validate