From: Mike Frysinger Date: Fri, 5 Mar 2021 04:01:20 +0000 (-0500) Subject: cros-repo: run init with -c for speedup X-Git-Url: https://git.wh0rd.org/?p=home.git;a=commitdiff_plain;h=4712112f4bd9c81f97c5e094ea9decc4f6462cde cros-repo: run init with -c for speedup --- diff --git a/.bin/cros-repo b/.bin/cros-repo index d8f5b5e..d3e1946 100755 --- a/.bin/cros-repo +++ b/.bin/cros-repo @@ -97,7 +97,7 @@ def set_git_config(opts): def init_repo(opts): """Initialize CrOS checkout.""" - cmd = ['repo', 'init'] + cmd = ['repo', 'init', '-c'] if opts.action == 'int': cmd += ['-u', INT_MANIFEST]