Changeset 51745 in webkit


Ignore:
Timestamp:
Dec 6, 2009, 7:27:54 PM (15 years ago)
Author:
mitz@apple.com
Message:

REGRESSION (r51728): update-webkit fails when the current directory is
not inside a Subversion working copy
https://bugs.webkit.org/show_bug.cgi?id=32204

Reviewed by Adele Peterson.

  • Scripts/update-webkit: Invoke isSVN() in the correct working

directory.

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51742 r51745  
     12009-12-06  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Adele Peterson.
     4
     5        REGRESSION (r51728): update-webkit fails when the current directory is
     6        not inside a Subversion working copy
     7        https://bugs.webkit.org/show_bug.cgi?id=32204
     8
     9        * Scripts/update-webkit: Invoke isSVN() in the correct working
     10        directory.
     11
    1122009-12-06  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebKitTools/Scripts/update-webkit

    r51728 r51745  
    4848determineIsChromium();
    4949
     50chdirWebKit();
     51
    5052my $isGit = isGit();
    5153my $isSVN = isSVN();
     
    7274push @svnOptions, qw(--accept postpone) if isSVNVersion16OrNewer();
    7375
    74 chdirWebKit();
    7576print "Updating OpenSource\n" unless $quiet;
    7677runSvnUpdate() if $isSVN;
Note: See TracChangeset for help on using the changeset viewer.