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