From 4406f430da0b2a95642a5478c32bf25aeb9c6cf0 Mon Sep 17 00:00:00 2001 From: Artur Nowakowski Date: Sat, 30 Nov 2019 22:45:54 +0100 Subject: [PATCH] Improved Jenkinsfile --- Jenkinsfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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' } } } }