24 lines
522 B
Bash
24 lines
522 B
Bash
#!/bin/bash
|
|
|
|
scriptPath="$0"
|
|
|
|
if [ -h "${scriptPath}" ]; then
|
|
while [ -h "${scriptPath}" ]; do scriptPath=`readlink "${scriptPath}"`; done
|
|
fi
|
|
|
|
pushd . > /dev/null
|
|
cd `dirname ${scriptPath}` > /dev/null
|
|
sysconfDir=`pwd`;
|
|
popd > /dev/null
|
|
|
|
coriolisEnvPy="${sysconfDir}/coriolisEnv.py"
|
|
echo $coriolisEnvPy
|
|
|
|
if [ -e ${coriolisEnvPy} ]; then
|
|
eval "`${coriolisEnvPy} --v2 --release --shared --python`"
|
|
else
|
|
echo "[ERROR] Missing ${coriolisEnvPy} script."
|
|
fi
|
|
|
|
unset scriptPath sysconfDir coriolisEnvPy
|