Skip to content

Commit ded2e40

Browse files
TP-113a-maurice
andauthored
change the error message to the warning one in XCodeProjectPathcer.cs (#754)
In previous versions, an error message was displayed when doing an iOS build on Windows OS. However, since Unity allows iOS xcodeproj to be built on Windows OS, such a message should at least be displayed as a warning, not an error. Co-authored-by: a-maurice <[email protected]>
1 parent 93da19a commit ded2e40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/app/src/XcodeProjectPatcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ private static void CheckBuildEnvironment() {
173173
BuildTarget buildTarget = EditorUserBuildSettings.activeBuildTarget;
174174
if ((buildTarget == BuildTarget.iOS || buildTarget == BuildTarget.tvOS) &&
175175
Application.platform == RuntimePlatform.WindowsEditor) {
176-
Debug.LogError(DocRef.IOSNotSupportedOnWindows);
176+
Debug.LogWarning(DocRef.IOSNotSupportedOnWindows);
177177
}
178178
}
179179

0 commit comments

Comments
 (0)