diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2016-08-12 09:46:07 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2016-08-12 09:46:07 +0200 |
commit | 6ee23ee614f192ff97b8e0c306f0523375acc045 (patch) | |
tree | 8b38c0c218145cc549ea8aeb4b478afb7fbbbc37 | |
parent | f2c074a73edb85ef71616d33f44c6fbda1159b25 (diff) |
There's no 'platform' in package_targets.py, only labels.
-rw-r--r-- | tools/run_tests/package_targets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/package_targets.py b/tools/run_tests/package_targets.py index 5cafa6c296..8217d7698a 100644 --- a/tools/run_tests/package_targets.py +++ b/tools/run_tests/package_targets.py @@ -81,7 +81,7 @@ class CSharpPackage: self.labels += ['windows'] def pre_build_jobspecs(self): - if self.platform == 'windows': + if 'windows' in self.labels: return [create_jobspec('prebuild_%s' % self.name, ['tools\\run_tests\\pre_build_csharp.bat'], shell=True, |