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,9 +3,8 @@
|
|||
set -x
|
||||
set -e
|
||||
|
||||
FULL_PATH=$(realpath $0)
|
||||
DIR_PATH=$(dirname $FULL_PATH)
|
||||
DIR_PATH=$(dirname $0)
|
||||
|
||||
$DIR_PATH/update
|
||||
|
||||
iex -S mix
|
||||
iex -S mix
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
set -x
|
||||
set -e
|
||||
|
||||
FULL_PATH=$(realpath $0)
|
||||
DIR_PATH=$(dirname $FULL_PATH)
|
||||
DIR_PATH=$(dirname $0)
|
||||
|
||||
$DIR_PATH/update
|
||||
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
set -x
|
||||
set -e
|
||||
|
||||
FULL_PATH=$(realpath $0)
|
||||
DIR_PATH=$(dirname $FULL_PATH)
|
||||
DIR_PATH=$(dirname $0)
|
||||
|
||||
$DIR_PATH/bootstrap
|
||||
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
set -x
|
||||
set -e
|
||||
|
||||
FULL_PATH=$(realpath $0)
|
||||
DIR_PATH=$(dirname $FULL_PATH)
|
||||
DIR_PATH=$(dirname $0)
|
||||
|
||||
$DIR_PATH/bootstrap
|
||||
|
||||
|
|
Loading…
Reference in a new issue