From 4a2a515ab8f09c7b3f2f81c166c63a94b8b9979a Mon Sep 17 00:00:00 2001 From: Juan David Hurtado G Date: Wed, 1 Oct 2025 09:51:05 -0500 Subject: [PATCH] Makefile: use `|` instead of `/` in sed to prevent fail when the branch has a `/` in its name --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 314fe847..e45ab625 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ install: @echo @echo "Updating Bastille version to match git revision." @echo "BASTILLE_VERSION: ${BASTILLE_DEV_VERSION}" - @sed -i '' "s/BASTILLE_VERSION=.*$/BASTILLE_VERSION=${BASTILLE_DEV_VERSION}/" usr/local/bin/bastille + @sed -i '' "s|BASTILLE_VERSION=.*|BASTILLE_VERSION=${BASTILLE_DEV_VERSION}|" usr/local/bin/bastille @cp -Rv usr / @gzip -f -n /usr/local/share/man/man8/bastille.8 @echo