From be895bb9ccd4c5845f92f0afe4a5f5558303a1d1 Mon Sep 17 00:00:00 2001 From: hackademix Date: Sat, 19 Oct 2024 00:02:57 +0200 Subject: [PATCH] [build] accept "signed" as a "sign" synonym. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 49d0722..3daa78c 100644 --- a/build.sh +++ b/build.sh @@ -93,7 +93,7 @@ CHROMIUM_BUILD_OPTS="$BUILD_OPTS" if [[ $VER == *rc* ]]; then sed -re 's/^(\s+)"strict_min_version":.*$/\1"update_url": "https:\/\/secure.informaction.com\/update\/?v='$VER'",\n\0/' \ "$MANIFEST_IN" > "$MANIFEST_OUT" - if [[ "$1" == "sign" ]]; then + if [[ "$1" =~ ^sign(ed)?$ ]]; then BUILD_CMD="$BASE/../../we-sign" BUILD_OPTS="" fi