Skip to content

Commit

Permalink
Plugin can not find PATH withEnv env overrides (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
akaryakina committed Nov 15, 2023
1 parent 8128c4b commit e022c18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protected String getExecutable(String filename, Run<?, ?> build, FilePath worksp
}
for (Map.Entry<String, String> entry : env.entrySet()) {
String envVarName = entry.getKey();
if ("PATH".equalsIgnoreCase(targetEnvVarName)) {
if ("PATH".equalsIgnoreCase(envVarName)) {
path = env.get(envVarName);
}
}
Expand Down

0 comments on commit e022c18

Please sign in to comment.