summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index 2e42bc4f03b..6d33f548fe5 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -3548,8 +3548,8 @@ class CSharpMapping(Mapping):
else:
path = os.path.join(current.testcase.getPath(current), current.getBuildDir(exe))
- useDotnetExe = (current.config.dotnetcore and
- (current.config.testTargetFramework in ["netcoreapp2.1"] or process.isFromBinDir() or isinstance(platform, Darwin)))
+ useDotnetExe = current.config.dotnetcore and \
+ (current.config.testTargetFramework in ["netcoreapp2.1"] or process.isFromBinDir())
command = ""
if useDotnetExe:
command += "dotnet "