Skip to content

Commit

Permalink
Updated format for comments in Jenkinsfile
Browse files Browse the repository at this point in the history
Signed-off-by: Adrien Duermael <adrien@duermael.com>
  • Loading branch information
aduermael committed Dec 16, 2016
1 parent d10d2b2 commit ffbdaaf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit ffbdaaf

Please sign in to comment.