mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
11 lines
325 B
TypeScript
11 lines
325 B
TypeScript
import { applyXctestRunnerAppIconFromDerivedPath } from '../src/platforms/apple/core/runner/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);
|