Reduce console noise at start of CI session. (#52387)

* Reduce console noise at start of CI session.
* Use allowed shebang.
This commit is contained in:
Matt Clay 2019-02-18 13:41:45 -08:00 committed by GitHub
parent 5e9b089ec2
commit a1fec259c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 22 additions and 22 deletions

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -1,6 +1,6 @@
#!/bin/bash -eux
#!/usr/bin/env bash
set -o pipefail
set -o pipefail -eux
# shellcheck disable=SC2086
ansible-test network-integration --explain ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} 2>&1 \

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -1,5 +1,5 @@
#!/bin/bash -eu
#!/usr/bin/env bash
set -o pipefail
set -o pipefail -eu
"$@" 2>&1 | "$(dirname "$0")/timing.py"

View file

@ -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"

View file

@ -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"