瀏覽代碼

Fix platform name in the message about unsupported CPU architecture

Signed-off-by: Yevhen Babiichuk (DustDFG) <[email protected]>
(cherry picked from commit ca60255d8c1d74c84cd8759fdf4724b123adff49)
Yevhen Babiichuk (DustDFG) 1 年之前
父節點
當前提交
bfdced3a1c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      platform/web/detect.py

+ 1 - 1
platform/web/detect.py

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