| 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"))
|
|
|