Skip to content

Commit

Permalink
fix path for in install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
FoxMaSk committed Oct 30, 2016
1 parent 038469e commit 99692e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
COMPOSER_COMMAND='composer'

DIR="${BASH_SOURCE}"
if [[ ! -d "$DIR" ]]; then DIR="$PWD/scripts"; fi
if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
. "$DIR/require.sh"

$COMPOSER_COMMAND install
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
COMPOSER_COMMAND='composer'

DIR="${BASH_SOURCE}"
if [[ ! -d "$DIR" ]]; then DIR="$PWD/scripts"; fi
if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
. "$DIR/require.sh"

ENV=$1
Expand Down
2 changes: 1 addition & 1 deletion scripts/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
COMPOSER_COMMAND='composer'

DIR="${BASH_SOURCE}"
if [[ ! -d "$DIR" ]]; then DIR="$PWD/scripts"; fi
if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
. "$DIR/require.sh"

ENV=$1
Expand Down

0 comments on commit 99692e8

Please sign in to comment.