Skip to content

Commit 935d56b

Browse files
authored
fix: splits command on run action (#84)
1 parent bf2f5b8 commit 935d56b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

actions/run/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actions/run/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actions/run/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async function run() {
3232
forgeArgs.push("--local");
3333
}
3434

35-
forgeArgs.push(command);
35+
forgeArgs.push(...command.split(" "));
3636

3737
if (args !== "") {
3838
forgeArgs.push(...args.split(" "));

0 commit comments

Comments
 (0)