diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:19:06 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:19:06 +0100 |
commit | aa0e57e00cfaa6c662c1e3c79da29910d385127e (patch) | |
tree | 9de5e4a92c99e79c1beb8a5a4de5dff80f17fa99 | |
parent | a277361321fec2adb43636eaad7be7ca8be0656b (diff) | |
parent | ca60255d8c1d74c84cd8759fdf4724b123adff49 (diff) | |
download | redot-engine-aa0e57e00cfaa6c662c1e3c79da29910d385127e.tar.gz |
Merge pull request #89598 from dustdfg/web/fix-supported-arch-message
Fix platform name in the message about unsupported CPU architecture
-rw-r--r-- | platform/web/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/web/detect.py b/platform/web/detect.py index e692c79a20..2d2cc288a1 100644 --- a/platform/web/detect.py +++ b/platform/web/detect.py @@ -86,7 +86,7 @@ def configure(env: "SConsEnvironment"): supported_arches = ["wasm32"] if env["arch"] not in supported_arches: 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)) ) sys.exit() |