pashage

Yet Another Opinionated Re-engineering of the Unix Password Store
git clone https://git.instinctive.eu/pashage.git
Log | Files | Refs | README | LICENSE

commit 557dee7966bd26474c647d16174e573265ba3d05
parent dcdc596d51b4ee2662e8ee11b52e0c74345179be
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date:   Thu, 17 Oct 2024 08:53:11 +0000

Generated scripts are made executable
Diffstat:
MMakefile | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -57,6 +57,7 @@ bin/pashage-freebsd.sh: src/platform-freebsd.sh src/pashage.sh src/run.sh echo >>"$@" echo '############' >>"$@" sed '1,/^############$$/d' src/run.sh >>"$@" + chmod a+x "$@" bin/pashage-linux.sh: src/platform-linux.sh src/pashage.sh src/run.sh mkdir -p bin @@ -67,3 +68,4 @@ bin/pashage-linux.sh: src/platform-linux.sh src/pashage.sh src/run.sh echo >>"$@" echo '############' >>"$@" sed '1,/^############$$/d' src/run.sh >>"$@" + chmod a+x "$@"