Title: [219197] trunk/Tools
Revision
219197
Author
commit-qu...@webkit.org
Date
2017-07-06 08:37:43 -0700 (Thu, 06 Jul 2017)

Log Message

Add CWD to Perl library path (no longer the default since 5.26.0)
https://bugs.webkit.org/show_bug.cgi?id=174200

Patch by Alicia Boya García <ab...@igalia.com> on 2017-07-06
Reviewed by Michael Catanzaro.

* Scripts/webkitpy/tool/commands/setupgitclone.py:
(SetupGitClone._get_username_and_email):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (219196 => 219197)


--- trunk/Tools/ChangeLog	2017-07-06 14:45:17 UTC (rev 219196)
+++ trunk/Tools/ChangeLog	2017-07-06 15:37:43 UTC (rev 219197)
@@ -1,3 +1,13 @@
+2017-07-06  Alicia Boya García  <ab...@igalia.com>
+
+        Add CWD to Perl library path (no longer the default since 5.26.0)
+        https://bugs.webkit.org/show_bug.cgi?id=174200
+
+        Reviewed by Michael Catanzaro.
+
+        * Scripts/webkitpy/tool/commands/setupgitclone.py:
+        (SetupGitClone._get_username_and_email):
+
 2017-07-06  Gyuyoung Kim  <gyuyoung....@webkit.org>
 
         Unreviewed, update my email address.

Modified: trunk/Tools/Scripts/webkitpy/tool/commands/setupgitclone.py (219196 => 219197)


--- trunk/Tools/Scripts/webkitpy/tool/commands/setupgitclone.py	2017-07-06 14:45:17 UTC (rev 219196)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/setupgitclone.py	2017-07-06 15:37:43 UTC (rev 219197)
@@ -81,11 +81,11 @@
             original_path = tool.filesystem.abspath(".")
 
             tool.filesystem.chdir("Tools/Scripts/")
-            username = tool.executive.run_and_throw_if_fail(["perl", "-e", "use VCSUtils; print STDOUT changeLogName();"], quiet=True)
+            username = tool.executive.run_and_throw_if_fail(["perl", "-e", "use lib '.'; use VCSUtils; print STDOUT changeLogName();"], quiet=True)
             if not username:
                 username = tool.user.prompt("Your name:")
 
-            email = tool.executive.run_and_throw_if_fail(["perl", "-e", "use VCSUtils; print STDOUT changeLogEmailAddress();"], quiet=True)
+            email = tool.executive.run_and_throw_if_fail(["perl", "-e", "use lib '.'; use VCSUtils; print STDOUT changeLogEmailAddress();"], quiet=True)
             if not email:
                 email = tool.user.prompt("Your email address:")
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to