Skip to content

Commit ac37495

Browse files
authored
Merge pull request #5 from IamPhytan/patch-2
Removed bug for Mac and Linux
2 parents d515105 + c1568c1 commit ac37495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MatlabTerminal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default class MatlabTerminal {
3333
if (process.platform === 'win32') {
3434
this.terminal.sendText(`${this.matlabCommand} ${this.noSplashArg} ${this.noDesktopArg} -r "run('${relativeFilePath}');"`);
3535
} else {
36-
this.terminal.sendText(`${rerun}run('${relativeFilePath}')`);
36+
this.terminal.sendText(`run('${relativeFilePath}')`);
3737
}
3838
}
3939
this.terminal.show(true);

0 commit comments

Comments
 (0)