We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98d85c3 commit 48b47a4Copy full SHA for 48b47a4
1 file changed
Xcode/check-xcode-version.swift
@@ -17,7 +17,7 @@ url.appendPathComponent("Config.json")
17
18
guard
19
let data = try? Data(contentsOf: url),
20
- let json = try? JSONSerialization.jsonObject(with: data, options: []) as? [String: Any],
+ let json = try JSONSerialization.jsonObject(with: data, options: []) as? [String: Any],
21
let project = json["project"] as? [String: Any],
22
let projectXcodeVersion = project["xcode_version"] as? String else {
23
print("\(projectPath):1:1: error: Xcode Version not found in Config.json")
0 commit comments