feat: Add iOS platform support #60

Merged
Henry-Hiles merged 7 commits from eleboucher/nexus:ios-support into main 2026-08-08 16:35:57 -04:00
Showing only changes of commit 98c3bb1c8e - Show all commits

change getXCodeTool exception

Henry Hiles 2026-08-08 16:35:34 -04:00
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -7,7 +7,7 @@ Future<String> getXCodeTool({String? sdkType, String? findTool}) async {
]); ]);
if (result.exitCode != 0) { if (result.exitCode != 0) {
throw Exception("Failed to run xcrun\n${result.stderr}"); throw Exception("Failed to get ${sdkType ?? "XCode"} ${findTool ?? "SDK"}");
} }
return result.stdout.toString().trim(); return result.stdout.toString().trim();