diff options
| author | Tianon Gravi <admwiggin@gmail.com> | 2017-02-13 11:01:54 -0800 |
|---|---|---|
| committer | Tianon Gravi <admwiggin@gmail.com> | 2017-02-13 11:01:54 -0800 |
| commit | 52379fa76dee07ca038624d639d9e14f4fb719ff (patch) | |
| tree | 191abcd43f0622e4d907d4e6789651ccfa495e26 /hack/make/test-integration-cli | |
| parent | 5870675ebc0db9fbe07736a59a6226b805ba00dc (diff) | |
| download | docker-52379fa76dee07ca038624d639d9e14f4fb719ff.tar.gz | |
Convert script shebangs from "#!/bin/bash" to "#!/usr/bin/env bash"
This is especially important for distributions like NixOS where `/bin/bash` doesn't exist, or for MacOS users who've installed a newer version of Bash than the one that comes with their OS.
Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com>
Diffstat (limited to 'hack/make/test-integration-cli')
| -rwxr-xr-x | hack/make/test-integration-cli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hack/make/test-integration-cli b/hack/make/test-integration-cli index 689a5285f3..c8137f4313 100755 --- a/hack/make/test-integration-cli +++ b/hack/make/test-integration-cli @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e source hack/make/.integration-test-helpers |
