[Webkit-unassigned] [Bug 27404] New: bugzilla-tool does not understand nested SVN repos
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Jul 17 19:28:45 PDT 2009
https://bugs.webkit.org/show_bug.cgi?id=27404
Summary: bugzilla-tool does not understand nested SVN repos
Product: WebKit
Version: 528+ (Nightly build)
Platform: All
OS/Version: All
Status: NEW
Severity: Normal
Priority: P2
Component: Tools / Tests
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: abarth at webkit.org
CC: eric at webkit.org, ddkilzer at webkit.org,
pkasting at google.com
@staticmethod
def find_checkout_root(path):
last_path = None
while True:
if not SVN.in_working_directory(path):
return last_path
last_path = path
(path, last_component) = os.path.split(path)
if last_path == path:
return None
This code assumes the WebKit SVN checkout isn't nested in another SVN checkout.
This causes bugzilla-tool to fail for my hybrid Chromium/WebKit tree.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list