2
0
Эх сурвалжийг харах

Merge pull request #89598 from dustdfg/web/fix-supported-arch-message

Fix platform name in the message about unsupported CPU architecture
Rémi Verschelde 1 жил өмнө
parent
commit
aa0e57e00c

+ 1 - 1
platform/web/detect.py

@@ -86,7 +86,7 @@ def configure(env: "SConsEnvironment"):
     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()