You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/doctor.ts
+9-7
Original file line number
Diff line number
Diff line change
@@ -142,13 +142,6 @@ export class Doctor implements NativeScriptDoctor.IDoctor {
142
142
platforms: [Constants.IOS_PLATFORM_NAME]
143
143
})
144
144
);
145
-
}else{
146
-
result.push({
147
-
message: "NOTE: You can develop for iOS only on Mac OS X systems.",
148
-
additionalInformation: "To be able to work with iOS devices and projects, you need Mac OS X Mavericks or later.",
149
-
platforms: [Constants.IOS_PLATFORM_NAME],
150
-
type: Constants.INFO_TYPE_NAME
151
-
});
152
145
}
153
146
154
147
result=result.concat(
@@ -173,6 +166,15 @@ export class Doctor implements NativeScriptDoctor.IDoctor {
173
166
})
174
167
);
175
168
169
+
if(!this.hostInfo.isDarwin){
170
+
result.push({
171
+
message: "Local builds for iOS can be executed only on a macOS system. To build for iOS on a different operating system, you can use the NativeScript cloud infrastructure.",
0 commit comments