2013-08-23 11:41:48 +01:00
|
|
|
addPythonPath() {
|
2015-11-17 10:36:32 +00:00
|
|
|
addToSearchPathWithCustomDelimiter : PYTHONPATH $1/site-packages
|
2013-08-23 11:41:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
toPythonPath() {
|
|
|
|
local paths="$1"
|
|
|
|
local result=
|
|
|
|
for i in $paths; do
|
2015-11-17 10:36:32 +00:00
|
|
|
p="$i/site-packages"
|
2013-08-23 11:41:48 +01:00
|
|
|
result="${result}${result:+:}$p"
|
|
|
|
done
|
|
|
|
echo $result
|
|
|
|
}
|
|
|
|
|
2014-07-08 13:20:05 +01:00
|
|
|
envHooks+=(addPythonPath)
|