From 7f06e482c1cd7723d3cb27819112dc3549cefacb Mon Sep 17 00:00:00 2001 From: Adrien Duermael Date: Wed, 14 Dec 2016 12:10:10 -0800 Subject: [PATCH] Updated format for comments in Jenkinsfile Signed-off-by: Adrien Duermael --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 90f7f98e45e4..17fa12762887 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,11 +4,11 @@ wrappedNode(label: 'linux && x86_64') { checkout scm stage "test" - # Jekyll creates html files to implement client side redirects. - # There are absolute links to docs.docker.com in these htmls - # we don't want them to be parsed by the tests for now. - # Removing jekyll-redirect-from option will make sure these pages - # are not generated when building with Jekyll. + /* Jekyll creates html files to implement client side redirects. + There are absolute links to docs.docker.com in these htmls + we don't want them to be parsed by the tests for now. + Removing jekyll-redirect-from option will make sure these pages + are not generated when building with Jekyll. */ sh "awk '/jekyll-redirect-from/{n=1}; n {n--; next}; 1' < _config.yml > _config.yml.tmp" sh "mv _config.yml.tmp _config.yml"