Skip to content

Commit e3819c8

Browse files
committed
Использую родные для sh cd, так как в нем нет pushd/popd
1 parent 43afdf5 commit e3819c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ pipeline {
5454
sh 'npm install vsce'
5555
script {
5656
def vsceBin = pwd() + "./node_modules/.bin/vsce"
57-
sh 'pushd install/build/vscode'
57+
sh 'cd install/build/vscode'
5858
sh "${vsceBin} package"
5959
archiveArtifacts artifacts: '*.vsix', fingerprint: true
60-
sh 'popd'
60+
sh 'cd -'
6161
}
6262
}
6363
}

0 commit comments

Comments
 (0)