fix relative paths in build

This commit is contained in:
Bryan Thornbury 2015-10-22 15:56:12 -07:00
parent d00c3ce742
commit 85d4f888ea

View file

@ -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