(context, identity, xcode)
| 700 | } |
| 701 | |
| 702 | function writeCachedXcodeContext(context, identity, xcode) { |
| 703 | fs.writeFileSync( |
| 704 | xcodeContextCachePath(context), |
| 705 | JSON.stringify({ identity, xcode }, null, 2), |
| 706 | ); |
| 707 | } |
| 708 | |
| 709 | function xcodebuildBaseArgs(args, derivedDataPath) { |
| 710 | const buildArgs = []; |
no test coverage detected