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

Unified Diff: gclient.py

Issue 269006: Revert "Un-revert the reverted 28058, so that we get quiet again." (Closed)
Patch Set: Created 11 years, 2 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 | « no previous file | gclient_scm.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient.py
diff --git a/gclient.py b/gclient.py
index 65912f2a9a1f6d32c8e38e2d48cf26f32391e742..96175aa172fc8a4f7f76c95fa59b9b487c8a0bf7 100755
--- a/gclient.py
+++ b/gclient.py
@@ -892,6 +892,7 @@ def DoCleanup(options, args):
# Print out the .gclient file. This is longer than if we just printed the
# client dict, but more legible, and it might contain helpful comments.
print(client.ConfigContent())
+ options.verbose = True
return client.RunOnDeps('cleanup', args)
@@ -970,6 +971,7 @@ def DoPack(options, args):
# Print out the .gclient file. This is longer than if we just printed the
# client dict, but more legible, and it might contain helpful comments.
print(client.ConfigContent())
+ options.verbose = True
return client.RunOnDeps('pack', args)
@@ -986,6 +988,7 @@ def DoStatus(options, args):
# Print out the .gclient file. This is longer than if we just printed the
# client dict, but more legible, and it might contain helpful comments.
print(client.ConfigContent())
+ options.verbose = True
return client.RunOnDeps('status', args)
@@ -1040,6 +1043,7 @@ def DoDiff(options, args):
# Print out the .gclient file. This is longer than if we just printed the
# client dict, but more legible, and it might contain helpful comments.
print(client.ConfigContent())
+ options.verbose = True
return client.RunOnDeps('diff', args)
@@ -1139,6 +1143,10 @@ def Main(argv):
"containing the provided string"))
option_parser.add_option("", "--verbose", action="store_true", default=False,
help="produce additional output for diagnostics")
+ option_parser.add_option("", "--manually_grab_svn_rev", action="store_true",
+ default=False,
+ help="Skip svn up whenever possible by requesting "
+ "actual HEAD revision from the repository")
option_parser.add_option("", "--head", action="store_true", default=False,
help=("skips any safesync_urls specified in "
"configured solutions"))
« no previous file with comments | « no previous file | gclient_scm.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698