commit | 31add084593e0cb7aff2bfaa4614873a63dc08d7 | [log] [tgz] |
---|---|---|
author | Zack Williams <zdw@opennetworking.org> | Fri Apr 13 13:27:17 2018 -0700 |
committer | Zack Williams <zdw@opennetworking.org> | Fri Apr 13 13:27:17 2018 -0700 |
tree | b04cafa05c666fd8c09933d94d07163268a1e63e | |
parent | 26acf559c03eb515713e8464c662e0b22dad7520 [diff] [blame] |
Fix shell invocation in gui-unit.yaml Change-Id: Ieb8dfb46aa32ab62eeda50116bd5c003ea7a099f
diff --git a/jjb/gui-unit.yaml b/jjb/gui-unit.yaml index 1cfd3c0..a4c315c 100644 --- a/jjb/gui-unit.yaml +++ b/jjb/gui-unit.yaml
@@ -39,8 +39,11 @@ project-type: freestyle concurrent: true - shell: | - npm install - npm run lint - npm test + builders: + - shell: | + #/usr/bin/env bash + set -eu -o pipefail + npm install + npm run lint + npm test