From e777c558a3a48ea0515e2a4192a192c4e89a8d76 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 16 Jan 2023 14:13:33 -0500 Subject: [PATCH] Use `vsce` from namespace `@vscode` See https://github.com/redhat-developer/vscode-xml/pull/857 Signed-off-by: David Thompson --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c2a8570..b1a2589 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,7 +24,8 @@ node('rhel8'){ stage('Install requirements') { def nodeHome = tool 'nodejs-14.19.1' env.PATH="${env.PATH}:${nodeHome}/bin" - sh 'npm install -g typescript vsce' + sh 'npm install -g typescript' + sh 'npm install -g -f "@vscode/vsce"' } stage('Build') {