Skip to content

Commit

Permalink
implement unstash optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ovcharenko-di committed Nov 29, 2024
1 parent 0b1feb7 commit ac1165f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/ru/pulsar/jenkins/library/StepExecutor.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,11 @@ class StepExecutor implements IStepExecutor {
steps.unstash name
}

@Override
def unstash(String name, boolean optional) {
steps.unstash name: name, optional: optional
}

@Override
def unstable(String message) {
steps.unstable message
Expand Down

0 comments on commit ac1165f

Please sign in to comment.