diff options
author | Adam Harvey <aharvey@php.net> | 2015-02-02 11:31:10 +0000 |
---|---|---|
committer | Adam Harvey <aharvey@php.net> | 2015-02-02 11:31:10 +0000 |
commit | 9d8b1170aa03dfc6cb52cb41f24fbb9c44573d89 (patch) | |
tree | 5bb1fb335fb0e7f5236e3b3fd40f5d817f14734f | |
parent | a7b3abe4e6f5e2fdfd8d55b676c9ca6b3f9c8cc8 (diff) | |
download | php-git-9d8b1170aa03dfc6cb52cb41f24fbb9c44573d89.tar.gz |
Let's not assume bash is always /bin/bash.
-rw-r--r-- | ext/session/mod_files.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/session/mod_files.sh b/ext/session/mod_files.sh index 6e5d0cad6f..75ac6a2fd7 100644 --- a/ext/session/mod_files.sh +++ b/ext/session/mod_files.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash if [[ "$2" = "" ]] || [[ "$3" = "" ]]; then echo "Usage: $0 BASE_DIRECTORY DEPTH HASH_BITS" @@ -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 - /bin/bash $0 $newpath `expr $depth - 1` $hashbits recurse + bash $0 $newpath `expr $depth - 1` $hashbits recurse done |