feat: -s stealth mode build flag
Some checks failed
/ mirror (push) Successful in 5s
/ build-stealth (push) Failing after 10s
/ build (push) Failing after 5s

This commit is contained in:
ange 2025-02-20 14:16:58 +00:00
parent 314e3be36a
commit ab45bf89fb
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
2 changed files with 12 additions and 2 deletions

View File

@ -2,4 +2,9 @@
IMG=git.gmoker.com/icing/flutter:main
docker run --rm -v "$PWD:/app/" "$IMG" build apk
if [ "$1" == -s ]; then
OPT+=(--dart-define=STEALTH=true)
fi
set -x
docker run --rm -v "$PWD:/app/" "$IMG" build apk "${OPT[@]}"

View File

@ -2,4 +2,9 @@
IMG=git.gmoker.com/icing/flutter:main
docker run --rm -p 5037:5037 -v "$PWD:/app/" "$IMG" run
if [ "$1" == -s ]; then
OPT+=(--dart-define=STEALTH=true)
fi
set -x
docker run --rm -p 5037:5037 -v "$PWD:/app/" "$IMG" run "${OPTS[@]}"