mirror of https://github.com/wallabag/wallabag.git
fix path for in install scripts
This commit is contained in:
parent
038469e73f
commit
99692e8c33
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue