Merge pull request #2521 from foxmask/master

fix path for  the install scripts
This commit is contained in:
Nicolas Lœuillet 2016-10-31 09:56:07 +01:00 committed by GitHub
commit e52ee565f7
3 changed files with 9 additions and 9 deletions

View file

@ -4,8 +4,8 @@
COMPOSER_COMMAND='composer' COMPOSER_COMMAND='composer'
DIR="${BASH_SOURCE%/*}" DIR="${BASH_SOURCE}"
if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
. "$DIR/require.sh" . "$DIR/require.sh"
$COMPOSER_COMMAND install $COMPOSER_COMMAND install

View file

@ -4,8 +4,8 @@
COMPOSER_COMMAND='composer' COMPOSER_COMMAND='composer'
DIR="${BASH_SOURCE%/*}" DIR="${BASH_SOURCE}"
if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
. "$DIR/require.sh" . "$DIR/require.sh"
ENV=$1 ENV=$1

View file

@ -4,8 +4,8 @@
COMPOSER_COMMAND='composer' COMPOSER_COMMAND='composer'
DIR="${BASH_SOURCE%/*}" DIR="${BASH_SOURCE}"
if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
. "$DIR/require.sh" . "$DIR/require.sh"
ENV=$1 ENV=$1