diff options
author | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2019-05-31 14:41:08 -0400 |
---|---|---|
committer | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2019-05-31 14:41:08 -0400 |
commit | 4351145ceb3ec61f122e5e6a389e9b63d653528c (patch) | |
tree | 22e07da3bda556b50e478e0066d12809ba450f37 /etc | |
parent | f39e80db634a58d63f038674e821bae9cacd1dd7 (diff) | |
download | mongo-4351145ceb3ec61f122e5e6a389e9b63d653528c.tar.gz |
SERVER-41393 Fix specifying "shell: bash" for fuzzer functions.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/evergreen.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml index e6ed3995119..b6a66b26d88 100644 --- a/etc/evergreen.yml +++ b/etc/evergreen.yml @@ -1789,9 +1789,9 @@ functions: "setup jstestfuzz": - command: shell.exec - shell: bash params: working_dir: src + shell: bash script: | set -o errexit set -o verbose @@ -1807,10 +1807,10 @@ functions: "lint fuzzer sanity patch": - command: shell.exec - shell: bash type: test params: working_dir: src + shell: bash script: | set -eo pipefail set -o verbose @@ -1823,10 +1823,10 @@ functions: "lint fuzzer sanity all": - command: shell.exec - shell: bash type: test params: working_dir: src + shell: bash script: | set -eo pipefail set -o verbose |