diff --git a/forge/actions/publish/src/main.js b/forge/actions/publish/src/main.js index 7cbefae5..0b73f0ca 100644 --- a/forge/actions/publish/src/main.js +++ b/forge/actions/publish/src/main.js @@ -63,7 +63,7 @@ module.exports = { * @returns {object} The blueprint object */ async function getBlueprint(project) { - result = await exec.exec("forge", ["blueprint", "dump", project]); + result = await exec.getExecOutput("forge", ["blueprint", "dump", project]); return JSON.parse(result.stdout); }