Skip to content

Commit c1568c1

Browse files
authored
Removed bug for Mac and Linux
Didn't removed references to removed variable.
1 parent d515105 commit c1568c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MatlabTerminal.ts

+1-1
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)