mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-06-11 09:44:46 -04:00
fix(scripts): use named variable instead of positional
This commit is contained in:
@@ -129,10 +129,9 @@ popd
|
||||
|
||||
# shellcheck disable=SC2154
|
||||
pushd "$fenix"
|
||||
if [[ "$1" == "apk" ]]; then
|
||||
if [[ "$build_type" == "apk" ]]; then
|
||||
gradle :app:assembleRelease
|
||||
fi
|
||||
if [[ "$1" == "bundle" ]]; then
|
||||
elif [[ "$build_type" == "bundle" ]]; then
|
||||
gradle :app:bundleRelease -Paab
|
||||
fi
|
||||
popd
|
||||
Reference in New Issue
Block a user