From 4de6f3ff36fdc53f56601f924f2840096053043f Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 29 Dec 2019 15:59:16 +0100 Subject: [PATCH] Jenkinsfile: fix indentation --- contrib/ci/Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/ci/Jenkinsfile b/contrib/ci/Jenkinsfile index 87a89bef..32fad18b 100644 --- a/contrib/ci/Jenkinsfile +++ b/contrib/ci/Jenkinsfile @@ -19,8 +19,8 @@ pipeline { agent { label 'gluon-docker' } environment { GLUON_SITEDIR = "contrib/ci/minimal-site" - GLUON_TARGET = "x86-64" - BUILD_LOG = "1" + GLUON_TARGET = "x86-64" + BUILD_LOG = "1" } stages { stage('lint') { @@ -38,8 +38,8 @@ pipeline { stage('build') { steps { sh 'make update' - sh 'test -d /dl_cache && ln -s /dl_cache openwrt/dl || true' - sh 'make -j$(nproc) V=s' + sh 'test -d /dl_cache && ln -s /dl_cache openwrt/dl || true' + sh 'make -j$(nproc) V=s' } } }