From: Kefu Chai Date: Tue, 3 May 2016 03:56:22 +0000 (+0800) Subject: test/encoding/readable.sh: use bash instead of sh X-Git-Tag: v11.0.0~757^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F8891%2Fhead;p=ceph.git test/encoding/readable.sh: use bash instead of sh aside from the `source` statement, the readable.sh is POSIX shell script. we can just "." the referenced helper script. but to be consistent with other encoding/*.sh scripts, let's just change the shebang line to "#!/bin/bash". Signed-off-by: Kefu Chai --- diff --git a/src/test/encoding/readable.sh b/src/test/encoding/readable.sh index f55d309f2d5d..bcec7558e0ac 100755 --- a/src/test/encoding/readable.sh +++ b/src/test/encoding/readable.sh @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/bash -e [ -z "$CEPH_ROOT" ] && CEPH_ROOT=..