You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-21 14:57:09 +00:00
Fix platform name in the message about unsupported CPU architecture
Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
(cherry picked from commit ca60255d8c)
This commit is contained in:
committed by
Rémi Verschelde
parent
94ddc44a12
commit
bfdced3a1c
@@ -85,7 +85,7 @@ def configure(env: "Environment"):
|
|||||||
supported_arches = ["wasm32"]
|
supported_arches = ["wasm32"]
|
||||||
if env["arch"] not in supported_arches:
|
if env["arch"] not in supported_arches:
|
||||||
print(
|
print(
|
||||||
'Unsupported CPU architecture "%s" for iOS. Supported architectures are: %s.'
|
'Unsupported CPU architecture "%s" for Web. Supported architectures are: %s.'
|
||||||
% (env["arch"], ", ".join(supported_arches))
|
% (env["arch"], ", ".join(supported_arches))
|
||||||
)
|
)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|||||||
Reference in New Issue
Block a user