mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-04 00:04:03 -04:00
7 lines
245 B
Bash
7 lines
245 B
Bash
#!/bin/bash
|
|
# This is a wrapper for python, to launch python with the proper PYTHONHOME set
|
|
# to make it relocatable.
|
|
BASEDIR="$(cd "$(dirname "$0")" && pwd)"
|
|
export PYTHONHOME="${BASEDIR}/../Frameworks"
|
|
exec ${BASEDIR}/@PYTHON_EXECUTABLE@ "$@"
|