Skip to content

Commit

Permalink
Fix working directory resolution for exe
Browse files Browse the repository at this point in the history
  • Loading branch information
dlujic committed Nov 18, 2019
1 parent a68d28d commit 6fc3f17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static FilePath getRanorexWorkingDirectory(FilePath jenkinsDirectory, Str
}

for (String name : splitName) {
if (! ".".equals(name) && ! name.contains(".rxtst")) {
if (! ".".equals(name) && ! name.contains(".rxtst") && ! name.contains(".exe")) {
if (name.toCharArray().length > 1 && (name.toCharArray())[1] == ':') {
directory.append(name);
} else {
Expand Down

0 comments on commit 6fc3f17

Please sign in to comment.