mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-05-22 22:01:17 +00:00
17 lines
309 B
Bash
17 lines
309 B
Bash
|
|
#!/bin/bash -e
|
||
|
|
|
||
|
|
export PULPRT_TARGET=pulp
|
||
|
|
export PULPRUN_TARGET=pulp
|
||
|
|
export USE_IBEX=1
|
||
|
|
|
||
|
|
if [ -n "${ZSH_VERSION:-}" ]; then
|
||
|
|
DIR="$(readlink -f -- "${(%):-%x}")"
|
||
|
|
scriptDir="$(dirname $DIR)"
|
||
|
|
else
|
||
|
|
|
||
|
|
scriptDir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
|
||
|
|
|
||
|
|
fi
|
||
|
|
|
||
|
|
source $scriptDir/common.sh
|