diff options
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index ffb02963acb..66abe03578b 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -231,9 +231,9 @@ def configurePaths(): # On Windows, C# assemblies are found thanks to the .exe.config files. # if isWin32(): - addPathToEnv("DEVPATH", os.path.join(getIceDir("cs"), "bin")) + addPathToEnv("DEVPATH", os.path.join(getIceDir("cs"), "Assemblies")) else: - addPathToEnv("MONO_PATH", os.path.join(getIceDir("cs"), "bin")) + addPathToEnv("MONO_PATH", os.path.join(getIceDir("cs"), "Assemblies")) # # On Windows x64, set PYTHONPATH to python/x64. |