Corrected the constructed system path value (broken by the env.cmd, env.sh & env.py file move in 4abc620bb044).
--HG-- branch : trunk
This commit is contained in:
parent
62a4cf68e8
commit
9fd1367845
|
@ -3,7 +3,7 @@
|
|||
import sys, os, os.path
|
||||
|
||||
progpath = sys.argv[0]
|
||||
packagedir = os.path.abspath(os.path.dirname(progpath))
|
||||
packagedir = os.path.dirname(os.path.dirname(os.path.abspath(progpath)))
|
||||
packagename = os.path.basename(packagedir)
|
||||
bindir = os.path.join(packagedir, 'bin')
|
||||
if sys.platform == 'win32':
|
||||
|
|
Loading…
Reference in New Issue