Skip to content

Commit 2dc9a5c

Browse files
committed
Fix syntax error in Jenkinsfile
Signed-off-by: Denis Golovin [email protected]
1 parent b6a83f4 commit 2dc9a5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ node('rhel8'){
1414
stage('Install requirements') {
1515
def nodeHome = tool 'nodejs-lts'
1616
env.PATH="${env.PATH}:${nodeHome}/bin"
17-
env.NODE_OPTIONS: --max_old_space_size=16384
17+
env.NODE_OPTIONS="--max_old_space_size=16384"
1818
sh "npm ci"
1919
sh "npm install -g vsce"
2020
}

0 commit comments

Comments
 (0)