UNPKG

cli-templates-tool

Version:
14 lines (11 loc) 312 B
import { execSync } from "child_process"; const runCommand = async (command) => { try { execSync(`${command}`, { stdio: "inherit" }); } catch (e) { console.error(`Failed to execute ${command}`, e); return false; } return true; }; export default runCommand;