UNPKG

@digitaloptgroup/plugin-install-start

Version:
11 lines (10 loc) 320 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const spawn = require("cross-spawn"); exports.execSync = (command, args) => { const proc = spawn.sync(command, args, { stdio: "inherit" }); if (proc.status !== 0) { throw Error("Failed to install plugin"); } return; };