summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2015-01-29 15:21:17 +0900
committerYasuo Ohgaki <yohgaki@php.net>2015-01-29 15:21:17 +0900
commitd463ddd3c7f9cee2fb8b02cb46f21b68ab4f7922 (patch)
treec8368667f93fc91222b6b5e5fcca6a489f3356c7
parentabf9e2ea09e8776f411e7133cd5b838682260e4d (diff)
downloadphp-git-d463ddd3c7f9cee2fb8b02cb46f21b68ab4f7922.tar.gz
Use bash rather than sh
-rw-r--r--ext/session/mod_files.sh2
1 files changed, 1 insertions, 1 deletions
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