mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
9abcd7fe03
* refactor: move Apple platform family into package * fix: preserve Apple facade sync contracts * fix: complete Apple W4 rebase review fixes
11 lines
333 B
TypeScript
11 lines
333 B
TypeScript
const [derivedPath] = process.argv.slice(2);
|
|
|
|
if (!derivedPath) {
|
|
console.error('Usage: patch-xcuitest-runner-icon.ts <derived>');
|
|
process.exit(1);
|
|
}
|
|
|
|
const { applyXctestRunnerAppIconFromDerivedPath } =
|
|
await import('@agent-device/platform-apple/runner/operations');
|
|
await applyXctestRunnerAppIconFromDerivedPath(derivedPath);
|