diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2015-08-20 14:49:17 -0400 |
---|---|---|
committer | Aric Gardner <agardner@linuxfoundation.org> | 2015-08-20 14:49:17 -0400 |
commit | d4e3d20baa7fb4dc2806ffb7c1954c879f3ff300 (patch) | |
tree | 9a68577d9867f508e86adcfed16447b6452e860b /jjb/verify-releng | |
parent | d3b7558256a9f4afa74af3fe7ab46465443234e1 (diff) |
The ordering here was eating the non zero exit status
Change-Id: Ifdedb74503e9897d423e25bb6b5a1dbc77e8057a
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Diffstat (limited to 'jjb/verify-releng')
-rwxr-xr-x | jjb/verify-releng | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/jjb/verify-releng b/jjb/verify-releng index 6e980e79b..807df1b11 100755 --- a/jjb/verify-releng +++ b/jjb/verify-releng @@ -1,9 +1,4 @@ #!/bin/bash - -source /opt/virtualenv/jenkins-job-builder/bin/activate -jenkins-jobs test jjb/ - - #test for non-ascii characters, these can pass the test and end up breaking things in production for x in $(find . -name *\.yml); do @@ -14,4 +9,5 @@ for x in $(find . -name *\.yml); do done -echo "all .yml files are ASCII only" +source /opt/virtualenv/jenkins-job-builder/bin/activate +jenkins-jobs test jjb/ |