diff options
author | Jose <jose@zeroc.com> | 2020-12-10 16:01:36 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2020-12-10 16:01:36 +0100 |
commit | 7646306cec492f4b261c301a332e77dbba6f898d (patch) | |
tree | bba291adefbce28286830757ec42dec3bae088b4 /scripts/Util.py | |
parent | .NET test script fixes (diff) | |
download | ice-7646306cec492f4b261c301a332e77dbba6f898d.tar.bz2 ice-7646306cec492f4b261c301a332e77dbba6f898d.tar.xz ice-7646306cec492f4b261c301a332e77dbba6f898d.zip |
Additional fixes for .NET test scripts
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 0d867d88969..0d600562b35 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -519,7 +519,7 @@ class Windows(Platform): def getDotNetExe(self): try: - return run("where dotnet").strip() + return run("where dotnet").strip().splitlines()[0] except: return None |