diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-06-27 17:45:29 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-06-27 22:37:49 -0700 |
commit | 14a301ddab0521e3f276cd309f8acf7fce526a78 (patch) | |
tree | ce0d60d15c5af0f92693f682d1ab90e236b2fe21 /tools | |
parent | b6960d068fe158dea537af1649b414348c3b66bc (diff) |
fix coreclr linux build
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 3798bf4e65..78539eef2d 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -522,7 +522,7 @@ class CSharpLanguage(object): if self.platform == 'linux': assembly_subdir += '/netstandard1.5/debian.8-x64' assembly_extension = '' - if self.platform == 'mac': + elif self.platform == 'mac': assembly_subdir += '/netstandard1.5/osx.10.11-x64' assembly_extension = '' else: |