Skip to content
Snippets Groups Projects
Commit 6ee23ee6 authored by Nicolas "Pixel" Noble's avatar Nicolas "Pixel" Noble
Browse files

There's no 'platform' in package_targets.py, only labels.

parent f2c074a7
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ class CSharpPackage: ...@@ -81,7 +81,7 @@ class CSharpPackage:
self.labels += ['windows'] self.labels += ['windows']
def pre_build_jobspecs(self): def pre_build_jobspecs(self):
if self.platform == 'windows': if 'windows' in self.labels:
return [create_jobspec('prebuild_%s' % self.name, return [create_jobspec('prebuild_%s' % self.name,
['tools\\run_tests\\pre_build_csharp.bat'], ['tools\\run_tests\\pre_build_csharp.bat'],
shell=True, shell=True,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment