Answers for "how to cd into a directory with jenkins pipeline"

0

how to cd into a directory with jenkins pipeline

steps {
    sh "pwd"
    dir('your-sub-directory') {
      sh "pwd"
    }
    sh "pwd"
}
Posted by: Guest on May-09-2021

Code answers related to "how to cd into a directory with jenkins pipeline"

Browse Popular Code Answers by Language