Skip to content

Commit

Permalink
Revert hard-coded src.git DEPS file name.
Browse files Browse the repository at this point in the history
This is breaking the ability to specify an alternate DEPS file, and do
things like sync release tags where DEPS is still from svn and we need
.DEPS.git to do a git checkout.

[email protected], [email protected]
BUG=407049

Review URL: https://codereview.chromium.org/511533003

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@291665 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
[email protected] committed Aug 26, 2014
1 parent 749fbd9 commit 8f93f79
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions gclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,7 @@ def __init__(
# These are not mutable:
self._parent = parent
self._safesync_url = safesync_url
if url == CHROMIUM_SRC_URL:
self._deps_file = 'DEPS'
else:
self._deps_file = deps_file
self._deps_file = deps_file
self._url = url
# 'managed' determines whether or not this dependency is synced/updated by
# gclient after gclient checks it out initially. The difference between
Expand Down

0 comments on commit 8f93f79

Please sign in to comment.