Changeset 85424 in webkit


Ignore:
Timestamp:
May 1, 2011 11:58:08 AM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-05-01 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

webkit-patch fails when not run from root
https://bugs.webkit.org/show_bug.cgi?id=59882

We need to set the CWD when running svn so that svn interprets file
paths relative to the root of the working copy.

  • Scripts/webkitpy/common/checkout/scm.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r85383 r85424  
     12011-05-01  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        webkit-patch fails when not run from root
     6        https://bugs.webkit.org/show_bug.cgi?id=59882
     7
     8        We need to set the CWD when running svn so that svn interprets file
     9        paths relative to the root of the working copy.
     10
     11        * Scripts/webkitpy/common/checkout/scm.py:
     12
    1132011-04-29  Eric Seidel  <eric@webkit.org>
    214
  • trunk/Tools/Scripts/webkitpy/common/checkout/scm.py

    r85210 r85424  
    559559                args += ['--config-dir', self._bogus_dir]
    560560            args.append(path)
    561             return self.run(args)
     561            return self.run(args, cwd=self.checkout_root)
    562562        finally:
    563563            self._teardown_bogus_dir(log)
Note: See TracChangeset for help on using the changeset viewer.