Changeset 219197 in webkit


Ignore:
Timestamp:
Jul 6, 2017 8:37:43 AM (7 years ago)
Author:
commit-queue@webkit.org
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 <aboya@igalia.com> on 2017-07-06
Reviewed by Michael Catanzaro.

  • Scripts/webkitpy/tool/commands/setupgitclone.py:

(SetupGitClone._get_username_and_email):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r219196 r219197  
     12017-07-06  Alicia Boya García  <aboya@igalia.com>
     2
     3        Add CWD to Perl library path (no longer the default since 5.26.0)
     4        https://bugs.webkit.org/show_bug.cgi?id=174200
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * Scripts/webkitpy/tool/commands/setupgitclone.py:
     9        (SetupGitClone._get_username_and_email):
     10
    1112017-07-06  Gyuyoung Kim  <gyuyoung.kim@webkit.org>
    212
  • trunk/Tools/Scripts/webkitpy/tool/commands/setupgitclone.py

    r202319 r219197  
    8282
    8383            tool.filesystem.chdir("Tools/Scripts/")
    84             username = tool.executive.run_and_throw_if_fail(["perl", "-e", "use VCSUtils; print STDOUT changeLogName();"], quiet=True)
     84            username = tool.executive.run_and_throw_if_fail(["perl", "-e", "use lib '.'; use VCSUtils; print STDOUT changeLogName();"], quiet=True)
    8585            if not username:
    8686                username = tool.user.prompt("Your name:")
    8787
    88             email = tool.executive.run_and_throw_if_fail(["perl", "-e", "use VCSUtils; print STDOUT changeLogEmailAddress();"], quiet=True)
     88            email = tool.executive.run_and_throw_if_fail(["perl", "-e", "use lib '.'; use VCSUtils; print STDOUT changeLogEmailAddress();"], quiet=True)
    8989            if not email:
    9090                email = tool.user.prompt("Your email address:")
Note: See TracChangeset for help on using the changeset viewer.