kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit 2e0ee8ef38e33b4fe68a41d9841ad1b7345eeb5a
parent c2ad1bd7da9740293edc966b26a645a7768e99a5
Author: St John Karp <contact@stjo.hn>
Date:   Thu,  9 Jun 2022 11:35:38 -0400

balrog: Fix build script and source

The git source should be fetched over https, not git.
The build file needed to create the target folder in the working
directory before installing.

Diffstat:
Mextra/balrog/build | 1+
Mextra/balrog/sources | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/extra/balrog/build b/extra/balrog/build @@ -1,4 +1,5 @@ #!/usr/bin/env sh +mkdir -p "$1/usr/bin" install -m 711 balrog "$1/usr/bin/balrog" ln -s /usr/bin/balrog "$1/usr/bin/pass" diff --git a/extra/balrog/sources b/extra/balrog/sources @@ -1 +1 @@ -git+git://git.stjo.hn/balrog +git+https://git.stjo.hn/balrog