projex
Version:
A command line to manage the workflow
13 lines (12 loc) • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.vtexRunScript = void 0;
const _shared_1 = require("../../../../shared/index");
const vtexRunScript = async function (script) {
if (script === undefined) {
return _shared_1.log.error('no script to execute');
}
const { runFindScript } = new _shared_1.VersionFileUtils();
runFindScript(script, 'running script');
};
exports.vtexRunScript = vtexRunScript;