diff options
author | Alan Somers <asomers@gmail.com> | 2017-07-21 00:26:42 +0200 |
---|---|---|
committer | Alan Somers <asomers@gmail.com> | 2017-07-27 21:24:26 +0200 |
commit | 3aae5ca6fda8b07ef875ae47c1b620aa3e2cdcd9 (patch) | |
tree | 27a9e5545e6b00fccdbe2fa374043141919e919d /src/script/ceph-debug-docker.sh | |
parent | Merge pull request #16452 from wjwithagen/wjw-warning-unused (diff) | |
download | ceph-3aae5ca6fda8b07ef875ae47c1b620aa3e2cdcd9.tar.xz ceph-3aae5ca6fda8b07ef875ae47c1b620aa3e2cdcd9.zip |
scripts: fix bash path in shebangs
/bin/bash is a Linuxism. Other operating systems install bash to
different paths. Use /usr/bin/env in shebangs to find bash.
Signed-off-by: Alan Somers <asomers@gmail.com>
Diffstat (limited to 'src/script/ceph-debug-docker.sh')
-rwxr-xr-x | src/script/ceph-debug-docker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/ceph-debug-docker.sh b/src/script/ceph-debug-docker.sh index 0fb4d2726a8..935867daeb3 100755 --- a/src/script/ceph-debug-docker.sh +++ b/src/script/ceph-debug-docker.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # This can be run from e.g. the senta machines which have docker available. You # may need to run this script with sudo. |