mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
11 lines
174 B
Bash
Executable File
11 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PYUIC4=$1
|
|
LD_LIBRARY_PATH=$2:$LD_LIBRARY_PATH
|
|
PYTHONPATH=$3:$PYTHONPATH
|
|
shift 3
|
|
|
|
export LD_LIBRARY_PATH PYTHONPATH
|
|
|
|
exec python $(dirname $0)/pyuic4-wrapper.py $@
|