Fix missing space in missing tools error message.

Currently prints as `ANDROID_HOME is correct and cmdline-toolsare installed, or install NDK version`
This commit is contained in:
Rob Blanckaert 2024-05-04 20:51:21 -07:00 committed by GitHub
parent 7ebc866418
commit 3093ef49bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -88,7 +88,7 @@ def install_ndk_if_needed(env: "SConsEnvironment"):
else:
print_error(
f'Cannot find "{sdkmanager}". Please ensure ANDROID_HOME is correct and cmdline-tools'
f'are installed, or install NDK version "{get_ndk_version()}" manually.'
f' are installed, or install NDK version "{get_ndk_version()}" manually.'
)
sys.exit(255)
env["ANDROID_NDK_ROOT"] = get_android_ndk_root(env)