mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-29 04:21:06 +00:00
fix path for in install scripts
This commit is contained in:
parent
038469e73f
commit
99692e8c33
3 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
||||||
COMPOSER_COMMAND='composer'
|
COMPOSER_COMMAND='composer'
|
||||||
|
|
||||||
DIR="${BASH_SOURCE}"
|
DIR="${BASH_SOURCE}"
|
||||||
if [[ ! -d "$DIR" ]]; then DIR="$PWD/scripts"; fi
|
if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
|
||||||
. "$DIR/require.sh"
|
. "$DIR/require.sh"
|
||||||
|
|
||||||
$COMPOSER_COMMAND install
|
$COMPOSER_COMMAND install
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
COMPOSER_COMMAND='composer'
|
COMPOSER_COMMAND='composer'
|
||||||
|
|
||||||
DIR="${BASH_SOURCE}"
|
DIR="${BASH_SOURCE}"
|
||||||
if [[ ! -d "$DIR" ]]; then DIR="$PWD/scripts"; fi
|
if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
|
||||||
. "$DIR/require.sh"
|
. "$DIR/require.sh"
|
||||||
|
|
||||||
ENV=$1
|
ENV=$1
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
COMPOSER_COMMAND='composer'
|
COMPOSER_COMMAND='composer'
|
||||||
|
|
||||||
DIR="${BASH_SOURCE}"
|
DIR="${BASH_SOURCE}"
|
||||||
if [[ ! -d "$DIR" ]]; then DIR="$PWD/scripts"; fi
|
if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
|
||||||
. "$DIR/require.sh"
|
. "$DIR/require.sh"
|
||||||
|
|
||||||
ENV=$1
|
ENV=$1
|
||||||
|
|
Loading…
Reference in a new issue