18 lines
567 B
Bash
Executable file
18 lines
567 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
|
|
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 )"
|
|
|
|
# Create Dnvm Package
|
|
$DIR/package-dnvm.sh
|
|
|
|
if [[ "$1" == "debian" ]]; then
|
|
# Create Debian package
|
|
$DIR/package-debian.sh
|
|
fi
|