Diskernet/exec.js

7 lines
158 B
JavaScript
Raw Normal View History

2024-08-29 13:28:14 +00:00
import path from 'path';
import {execSync} from 'child_process';
const runPath = path.resolve(process.argv[2]);
execSync(`"${runPath}"`,{stdio:'inherit'});