From: Yasuo Ohgaki Date: Thu, 29 Jan 2015 06:21:17 +0000 (+0900) Subject: Use bash rather than sh X-Git-Tag: php-5.5.22RC1~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d463ddd3c7f9cee2fb8b02cb46f21b68ab4f7922;p=php Use bash rather than sh --- diff --git a/ext/session/mod_files.sh b/ext/session/mod_files.sh index aac0d48fd0..6e5d0cad6f 100644 --- a/ext/session/mod_files.sh +++ b/ext/session/mod_files.sh @@ -61,5 +61,5 @@ echo "Creating session path in $directory with a depth of $depth for session.has for i in $hash_chars; do newpath="$directory/$i" mkdir $newpath || exit 1 - sh $0 $newpath `expr $depth - 1` $hashbits recurse + /bin/bash $0 $newpath `expr $depth - 1` $hashbits recurse done