From aefb6adfe7583edf6dce79d0c3cd2803bb4f66a1 Mon Sep 17 00:00:00 2001 From: James H Ball Date: Sun, 5 Jan 2025 16:35:08 +0000 Subject: [PATCH] Fix sed command --- ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build.sh b/ci/build.sh index a791198..ae1390d 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -8,7 +8,7 @@ OUTPUT_NAME="$PLUGIN-$VERSION" # If we are on the free version, we need to disable the build flag SOSCI_FEATURES if [ "$VERSION" = "free" ]; then # Edit the jucer file to disable the SOSCI_FEATURES flag - sed -i '' 's/SOSCI_FEATURES=1/SOSCI_FEATURES=0/' "$ROOT/$PLUGIN.jucer" + sed 's/SOSCI_FEATURES=1/SOSCI_FEATURES=0/' "$ROOT/$PLUGIN.jucer" fi # Resave jucer file