Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: gclient_utils.py

Issue 2627007: Bring some OOP and sanity to gclient.py. (Closed)
Patch Set: diff against http://codereview.chromium.org/2836042 Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gclient.py ('k') | tests/gclient_smoketest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index 3297e63872c20363d4810660c23160b95f55806c..248bfb095fe69b781328b8e1307522843492ff54 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -293,14 +293,6 @@ def SubprocessCallAndFilter(command,
raise Error(msg)
-def IsUsingGit(root, paths):
- """Returns True if we're using git to manage any of our checkouts.
- |entries| is a list of paths to check."""
- for path in paths:
- if os.path.exists(os.path.join(root, path, '.git')):
- return True
- return False
-
def FindGclientRoot(from_dir, filename='.gclient'):
"""Tries to find the gclient root."""
path = os.path.realpath(from_dir)
« no previous file with comments | « gclient.py ('k') | tests/gclient_smoketest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698