Merge branch 'fix-realpath-install' into 'master'
fix: Do not use realpath in update / bootstrap scripts See merge request mythic-insight/legendary!61
This commit is contained in:
commit
59b7a34d5f
4 changed files with 5 additions and 9 deletions
|
@ -3,8 +3,7 @@
|
||||||
set -x
|
set -x
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
FULL_PATH=$(realpath $0)
|
DIR_PATH=$(dirname $0)
|
||||||
DIR_PATH=$(dirname $FULL_PATH)
|
|
||||||
|
|
||||||
$DIR_PATH/update
|
$DIR_PATH/update
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,7 @@
|
||||||
set -x
|
set -x
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
FULL_PATH=$(realpath $0)
|
DIR_PATH=$(dirname $0)
|
||||||
DIR_PATH=$(dirname $FULL_PATH)
|
|
||||||
|
|
||||||
$DIR_PATH/update
|
$DIR_PATH/update
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,7 @@
|
||||||
set -x
|
set -x
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
FULL_PATH=$(realpath $0)
|
DIR_PATH=$(dirname $0)
|
||||||
DIR_PATH=$(dirname $FULL_PATH)
|
|
||||||
|
|
||||||
$DIR_PATH/bootstrap
|
$DIR_PATH/bootstrap
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,7 @@
|
||||||
set -x
|
set -x
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
FULL_PATH=$(realpath $0)
|
DIR_PATH=$(dirname $0)
|
||||||
DIR_PATH=$(dirname $FULL_PATH)
|
|
||||||
|
|
||||||
$DIR_PATH/bootstrap
|
$DIR_PATH/bootstrap
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue