fix relative paths in build
This commit is contained in:
parent
d00c3ce742
commit
85d4f888ea
1 changed files with 10 additions and 2 deletions
12
build.sh
12
build.sh
|
@ -2,6 +2,14 @@
|
|||
#
|
||||
# $1 is passed to package to enable deb or pkg packaging
|
||||
|
||||
./scripts/bootstrap.sh
|
||||
SOURCE="${BASH_SOURCE[0]}"
|
||||
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
|
||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||
SOURCE="$(readlink "$SOURCE")"
|
||||
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
|
||||
done
|
||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||
|
||||
./scripts/package.sh $1
|
||||
$DIR/scripts/bootstrap.sh
|
||||
|
||||
$DIR/scripts/package.sh $1
|
||||
|
|
Loading…
Reference in a new issue