diff --git a/Pipeline/Jenkinsfile b/Pipeline/Jenkinsfile index daeef25..9c48ca6 100644 --- a/Pipeline/Jenkinsfile +++ b/Pipeline/Jenkinsfile @@ -47,9 +47,10 @@ pipeline { stage('build'){ steps{ - dir("gluon") - sh "make update" - sh "make GLUON_TARGET=ar71xx-generic" + dir("gluon"){ + sh "make update" + sh "make GLUON_TARGET=ar71xx-generic" + } } }