Title: [247091] trunk/Tools
Revision
247091
Author
aakash_j...@apple.com
Date
2019-07-03 05:26:11 -0700 (Wed, 03 Jul 2019)

Log Message

Unreviewed follow-up fix to r247049, default the platform to '*' when platform property is not set.

* BuildSlaveSupport/ews-build/steps.py:
(PrintConfiguration.run):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/ews-build/steps.py (247090 => 247091)


--- trunk/Tools/BuildSlaveSupport/ews-build/steps.py	2019-07-03 07:00:32 UTC (rev 247090)
+++ trunk/Tools/BuildSlaveSupport/ews-build/steps.py	2019-07-03 12:26:11 UTC (rev 247091)
@@ -1227,7 +1227,7 @@
 
     def run(self):
         command_list = list(self.command_list_generic)
-        platform = self.getProperty('platform')
+        platform = self.getProperty('platform', '*')
         platform = platform.split('-')[0]
         if platform in ('mac', 'ios', '*'):
             command_list.extend(self.command_list_apple)

Modified: trunk/Tools/ChangeLog (247090 => 247091)


--- trunk/Tools/ChangeLog	2019-07-03 07:00:32 UTC (rev 247090)
+++ trunk/Tools/ChangeLog	2019-07-03 12:26:11 UTC (rev 247091)
@@ -1,3 +1,10 @@
+2019-07-03  Aakash Jain  <aakash_j...@apple.com>
+
+        Unreviewed follow-up fix to r247049, default the platform to '*' when platform property is not set.
+
+        * BuildSlaveSupport/ews-build/steps.py:
+        (PrintConfiguration.run):
+
 2019-07-02  Aakash Jain  <aakash_j...@apple.com>
 
         [ews-build] Add build steps to Install Wpe and Gtk dependencies
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to