mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-16 17:32:06 +01:00
ff875775bc
Related to #88.
18 lines
561 B
Bash
Executable file
18 lines
561 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Pretty fancy method to get reliable the absolute path of a shell
|
|
# script, *even if it is sourced*. Credits go to GreenFox on
|
|
# stackoverflow: http://stackoverflow.com/a/12197518/194894
|
|
pushd . > /dev/null
|
|
SCRIPTDIR="${BASH_SOURCE[0]}";
|
|
while([ -h "${SCRIPTDIR}" ]); do
|
|
cd "`dirname "${SCRIPTDIR}"`"
|
|
SCRIPTDIR="$(readlink "`basename "${SCRIPTDIR}"`")";
|
|
done
|
|
cd "`dirname "${SCRIPTDIR}"`" > /dev/null
|
|
SCRIPTDIR="`pwd`";
|
|
popd > /dev/null
|
|
|
|
BASEDIR="$(cd ${SCRIPTDIR}/.. && pwd)"
|
|
|
|
exec "${BASEDIR}/gradlew" run --quiet --args="${@}"
|