Skip to content

Commit 444020c

Browse files
Remove log message about generating script (#60)
1 parent 2b2ed89 commit 444020c

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

src/index.ts

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,8 @@ async function run() {
1616
const command = core.getInput("command");
1717
const startupOpts = core.getInput("startup-options").split(" ");
1818

19-
const helperScript = await core.group("Generate script", async () => {
20-
const helperScript = await matlab.generateScript(workspaceDir, command);
21-
core.info("Successfully generated script");
22-
return helperScript;
23-
});
24-
25-
await core.group("Run command", async () => {
26-
await matlab.runCommand(helperScript, platform, architecture, exec.exec, startupOpts);
27-
});
19+
const helperScript = await matlab.generateScript(workspaceDir, command);
20+
await matlab.runCommand(helperScript, platform, architecture, exec.exec, startupOpts);
2821
}
2922

3023
// Only run this action if it is invoked directly. Do not run if this node

0 commit comments

Comments
 (0)