diff options
author | 2017-10-03 15:57:08 -0700 | |
---|---|---|
committer | 2017-10-03 15:57:08 -0700 | |
commit | 57e49d1bc0a9e5226fa6dbd56fcb641cffbb064a (patch) | |
tree | 5f8dd1497aa6cc22084b5f71aab6198339332121 | |
parent | 06bfdd12f95942652ac3dc3cfe635fa72692d7cc (diff) |
Fix minor yamllint violation in jjb/moon/moon.yml
Without a '|' after the shell builder declaration yamllint will think
the bash directive is a comment.
JIRA: RELENG-254
Change-Id: Ib4e9802dbceeac1356936510ffa2efeca648076d
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
-rw-r--r-- | jjb/moon/moon.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/moon/moon.yml b/jjb/moon/moon.yml index aa4aa40f1..d254129e1 100644 --- a/jjb/moon/moon.yml +++ b/jjb/moon/moon.yml @@ -52,7 +52,7 @@ pattern: 'docs/**|.gitignore' builders: - - shell: + - shell: | #!/bin/bash echo "launch Moon unit tests" nosetest $WORKSPACE/keystone-moon/keystone/tests/moon/unit |