diff options
author | Matt Clay <matt@mystile.com> | 2019-02-18 13:41:45 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-18 13:41:45 -0800 |
commit | a1fec259c1cf16429eb7d42c9c9a657eff814436 (patch) | |
tree | 9faf69a0d01b14ebab06e9af8a6b9b420a024a12 /test/utils/shippable/shippable.sh | |
parent | 5e9b089ec2d9e95fdecc79b652a688ae2c0fa401 (diff) | |
download | ansible-a1fec259c1cf16429eb7d42c9c9a657eff814436.tar.gz |
Reduce console noise at start of CI session. (#52387)
* Reduce console noise at start of CI session.
* Use allowed shebang.
Diffstat (limited to 'test/utils/shippable/shippable.sh')
-rwxr-xr-x | test/utils/shippable/shippable.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/utils/shippable/shippable.sh b/test/utils/shippable/shippable.sh index 42f2e57663..739ff9e9fe 100755 --- a/test/utils/shippable/shippable.sh +++ b/test/utils/shippable/shippable.sh @@ -1,6 +1,6 @@ -#!/bin/bash -eux +#!/usr/bin/env bash -set -o pipefail +set -o pipefail -eux declare -a args IFS='/:' read -ra args <<< "$1" |