Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alfespa17 committed Dec 19, 2023
1 parent 9422d5a commit fe028bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public boolean execute(Job job, String stepId, Flow flow) {
if(job.getOverrideBranch() == null) {
executorContext.setBranch(job.getWorkspace().getBranch());
} else {
if (job.getOverrideBranch() == "remote-content") {
if (job.getOverrideBranch().equals("remote-content")) {
executorContext.setShowHeader(false);
}
executorContext.setBranch(job.getOverrideBranch());
Expand Down

0 comments on commit fe028bf

Please sign in to comment.