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/dynbinary-daemon | |
| 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/dynbinary-daemon')
| -rw-r--r-- | hack/make/dynbinary-daemon | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hack/make/dynbinary-daemon b/hack/make/dynbinary-daemon index 090a916f65..1b7dbb45a8 100644 --- a/hack/make/dynbinary-daemon +++ b/hack/make/dynbinary-daemon @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e ( |
