From 65e2eec9fe577d9ea01abe51bccb1dba456264af Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Tue, 3 Sep 2024 20:07:02 -0400 Subject: [PATCH] wip: testing --- forge/actions/publish/src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }