Fix a missing : in build-rust-sdk (#6522)

This prevented us providing a build target argument.
This commit is contained in:
Andy Balaam 2026-04-03 10:41:57 +01:00 committed by GitHub
parent a77662421c
commit acf8229838

View file

@ -41,7 +41,7 @@ sdkArg=""
## Argument parsing
TEMP=$(getopt -o 'rs:b:at:h' --long 'remote,sdk:,branch:,build-app,target-arch,help' -- "$@")
TEMP=$(getopt -o 'rs:b:at:h' --long 'remote,sdk:,branch:,build-app,target-arch:,help' -- "$@")
if [ $? -ne 0 ]; then
echo 'Terminating...' >&2