From 9832f3e8edf82d3e77becaa5c6d7e696ea68dc7c Mon Sep 17 00:00:00 2001 From: Renaud Lepage Date: Fri, 13 Sep 2024 15:02:41 -0700 Subject: [PATCH] nits still --- .github/build-nest-v3 | 2 +- main.sh | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/build-nest-v3 b/.github/build-nest-v3 index 7813681..62f9457 100644 --- a/.github/build-nest-v3 +++ b/.github/build-nest-v3 @@ -1 +1 @@ -5 \ No newline at end of file +6 \ No newline at end of file diff --git a/main.sh b/main.sh index 8a4ac41..3e0131f 100755 --- a/main.sh +++ b/main.sh @@ -11,9 +11,13 @@ VERSION="0.15.4" # Clone Upstream UPSTREAM_NAME="sbctl" +# Checkout and munch git clone https://github.com/Foxboron/sbctl.git "${UPSTREAM_NAME}" cp -rvf ./debian ./${UPSTREAM_NAME}/ +# easier than figuring out the right way to override the prefix in the makefile +sed -i "s/usr\/local/usr/" "${UPSTREAM_NAME}/Makefile" + # Get in there. pushd "./${UPSTREAM_NAME}/" || exit 1