Skip to content

Commit 63f730c

Browse files
authored
Fix command string spacing (#62)
1 parent 444020c commit 63f730c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/matlab.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export async function runCommand(hs: HelperScript, platform: string, architectur
5757
const rmcPath = getRunMATLABCommandScriptPath(platform, architecture);
5858
await fs.chmod(rmcPath, 0o777);
5959

60-
const rmcArg = `setenv('MW_ORIG_WORKING_FOLDER', cd('${script.pathToCharVec(hs.dir)}'));${hs.command}`;
60+
const rmcArg = `setenv('MW_ORIG_WORKING_FOLDER',cd('${script.pathToCharVec(hs.dir)}')); ${hs.command}`;
6161

6262
let execArgs = [rmcArg];
6363

0 commit comments

Comments
 (0)