commit | f2d73522b8d989a4a325ddefdf4dc88f39eaeedb | [log] [tgz] |
---|---|---|
author | mbjorge <mbjorge@chromium.org> | Thu Jul 14 20:28:59 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu Jul 14 20:28:59 2016 |
tree | 2fc90dac50437f39a59ee2483b278dd05223eb07 | |
parent | 9a0de0b9f1249b128ac0fd1d3800f5a8c9a921ad [diff] |
Fix relative file: paths in OWNERS with roots other than '/' If an OWNERS file used the file: directive with a relative file path, but was using a root other than '/' (e.g. '/path/to/my/real/root'), then the include resolver would incorrectly leave a leading '/' on the include path. When os_path.join was then called, the leading '/' meant the path was treated as an absolute path and the join did not behave as expected. Review-Url: https://codereview.chromium.org/2148683003