Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit e5ab50b

Browse files
committed
Fixed issue 369
1 parent 61bc2b1 commit e5ab50b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/java/com/mathworks/ci/UseMatlabVersionBuildWrapper.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ public void setUp(Context context, Run<?, ?> build, FilePath workspace, Launcher
191191

192192
String nodeSpecificMatlab = getNodeSpecificMatlab(Computer.currentComputer(), listener) + getNodeSpecificExecutable(launcher);
193193
FilePath matlabExecutablePath = new FilePath(launcher.getChannel(), nodeSpecificMatlab);
194-
listener.getLogger().println("**The path which is trying to uppend is **" + matlabExecutablePath.getRemote ());
195194
if (!matlabExecutablePath.exists()) {
196195
throw new MatlabNotFoundError(Message.getValue("matlab.not.found.error"));
197196
}

src/main/java/com/mathworks/ci/tools/MatlabInstaller.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public MatlabInstaller(String id) {
5757
}
5858

5959
public String getRelease() {
60-
return this.release;
60+
return this.release.trim();
6161
}
6262

6363
@DataBoundSetter

0 commit comments

Comments
 (0)