Skip to content

Commit

Permalink
style: break command to multiline in Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
purbanow committed Oct 5, 2018
1 parent a3fda40 commit d42c320
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,14 @@ podTemplate(
commitMessage = sh(returnStdout: true, script: "git log -1 --pretty=%B")
sh ("""
set +x
mix coveralls.post --umbrella --include integration --include wrappers --token '${ELIXIR_OMG_COVERALLS}' --branch '${scmVars.GIT_BRANCH}' --sha '${scmVars.GIT_COMMIT}' --message '${commitMessage}'
mix coveralls.post \
--umbrella \
--include integration \
--include wrappers \
--token '${ELIXIR_OMG_COVERALLS}' \
--branch '${scmVars.GIT_BRANCH}' \
--sha '${scmVars.GIT_COMMIT}' \
--message '${commitMessage}' \
""")
}
}
Expand Down

0 comments on commit d42c320

Please sign in to comment.