mirror of https://github.com/alibaba/ice.git
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
|
import { spawnSync } from 'child_process';
|
||
|
|
||
|
export default (order: string, cwd: string) => {
|
||
|
const [command, ...args] = order.split(' ');
|
||
|
spawnSync(command, args, {
|
||
|
stdio: 'inherit',
|
||
|
cwd,
|
||
|
});
|
||
|
}
|