Files
callstack__agent-device/scripts/patch-xcuitest-runner-icon.ts
2026-05-29 09:16:15 +02:00

11 lines
311 B
TypeScript

import { applyXctestRunnerAppIconFromDerivedPath } from '../src/platforms/ios/runner-icon.ts';
const [derivedPath] = process.argv.slice(2);
if (!derivedPath) {
console.error('Usage: patch-xcuitest-runner-icon.ts <derived>');
process.exit(1);
}
await applyXctestRunnerAppIconFromDerivedPath(derivedPath);