diff --git a/Jenkinsfile b/Jenkinsfile index 5c459bd..dc5ae56 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,9 +20,7 @@ node { dir('target/front'){ stage("Frontend: Build") { docker.image('circleci/node:10').inside{ - withEnv([ - 'HOME=.', - ]) { sh 'npm install && npm run build' } + withEnv(['HOME=.']) { sh 'npm install && npm run build' } } } }