Title: [268984] trunk/Tools
Revision
268984
Author
[email protected]
Date
2020-10-26 10:49:27 -0700 (Mon, 26 Oct 2020)

Log Message

Webkitscmpy has missing / in scm executable candidate list.
https://bugs.webkit.org/show_bug.cgi?id=218166

Reviewed by Jonathan Bedard.

* Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py: Version Bump
* Scripts/libraries/webkitscmpy/webkitscmpy/local/scm.py:
(Scm.executable):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (268983 => 268984)


--- trunk/Tools/ChangeLog	2020-10-26 17:29:49 UTC (rev 268983)
+++ trunk/Tools/ChangeLog	2020-10-26 17:49:27 UTC (rev 268984)
@@ -1,3 +1,14 @@
+2020-10-26  Matt Lewis  <[email protected]>
+
+        Webkitscmpy has missing / in scm executable candidate list.
+        https://bugs.webkit.org/show_bug.cgi?id=218166
+
+        Reviewed by Jonathan Bedard.
+
+        * Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py: Version Bump
+        * Scripts/libraries/webkitscmpy/webkitscmpy/local/scm.py:
+        (Scm.executable):
+
 2020-10-26  Youenn Fablet  <[email protected]>
 
         W3C test importer should not import manual HTTPS tests

Modified: trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py (268983 => 268984)


--- trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py	2020-10-26 17:29:49 UTC (rev 268983)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py	2020-10-26 17:49:27 UTC (rev 268984)
@@ -46,7 +46,7 @@
         "Please install webkitcorepy with `pip install webkitcorepy --extra-index-url <package index URL>`"
     )
 
-version = Version(0, 2, 4)
+version = Version(0, 2, 5)
 
 AutoInstall.register(Package('dateutil', Version(2, 8, 1), pypi_name='python-dateutil'))
 

Modified: trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/scm.py (268983 => 268984)


--- trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/scm.py	2020-10-26 17:29:49 UTC (rev 268983)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/scm.py	2020-10-26 17:49:27 UTC (rev 268984)
@@ -43,7 +43,7 @@
 
     @classmethod
     def executable(cls, program):
-        for candidate in ['usr/bin', 'usr/bin/local']:
+        for candidate in ['/usr/bin', '/usr/bin/local']:
             candidate = os.path.join(candidate, program)
             if os.path.exists(candidate):
                 return candidate
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to