Skip to content

Commit a374318

Browse files
committed
Build script: rename flag -s to -g
1 parent a607b5c commit a374318

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ OS_NAMES="android|emscripten|ios|linux|mac|win"
44
CPU_NAMES="arm|arm64|ppc64|x64|x86|wasm"
55
ENV_NAMES="catalyst|device|musl|simulator"
66
OS_ENV_COMBINATIONS="linux musl|ios (catalyst|device|simulator)"
7-
STEP_REGEX="[0-9]"
7+
STEP_REGEX="[0-9]|10"
88

99
START_STEP=0
1010

@@ -22,13 +22,13 @@ Arguments:
2222
2323
Options:
2424
-b branch = Chromium branch (default=main)
25-
-s 0-10 = Set start step (default=0)
25+
-g 0-10 = Go immediately to step n (default=0)
2626
-d = debug build
2727
-j = enable v8"
2828
exit
2929
fi
3030

31-
while getopts "b:djms:" OPTION
31+
while getopts "b:djmg:" OPTION
3232
do
3333
case $OPTION in
3434
b)
@@ -43,7 +43,7 @@ do
4343
export PDFium_ENABLE_V8=true
4444
;;
4545

46-
s)
46+
g)
4747
START_STEP="$OPTARG"
4848
;;
4949

0 commit comments

Comments
 (0)