[build] accept "signed" as a "sign" synonym.

This commit is contained in:
hackademix 2024-10-19 00:02:57 +02:00
parent ef79a5fc4a
commit be895bb9cc
No known key found for this signature in database
GPG Key ID: 231A83AFDA9C2434
1 changed files with 1 additions and 1 deletions

View File

@ -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