mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-06-17 01:44:54 +00:00
10 lines
209 B
Bash
10 lines
209 B
Bash
#!/bin/bash -e
|
|
|
|
export PULPRT_TARGET=pulp
|
|
export PULPRUN_TARGET=pulp
|
|
|
|
scriptDir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
if [ -e ${scriptDir}/../init.sh ]; then
|
|
source ${scriptDir}/../init.sh
|
|
fi
|