From 1a55d2d114eece727b64db3e2771f9f1c334623a Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Tue, 3 May 2016 11:56:22 +0800 Subject: [PATCH] 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 --- src/test/encoding/readable.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=.. -- 2.47.3