commit | b9d987ecdb4c8664ed16ff98b0a8777ac34e44a6 | [log] [tgz] |
---|---|---|
author | Joanna Wang <jojwang@chromium.org> | Fri Oct 07 00:20:21 2022 +0000 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Oct 07 00:20:21 2022 +0000 |
tree | fde153a27cf701538fb60d54c575aed0fa9c3c69 | |
parent | f379cddf54b89c8622d764ccf6a633a7f7104d54 [diff] [blame] |
Add print gsutil ls output for git_cache Bug: 1370443 Change-Id: I113169a0fdfb3ea87f5f27ba066cce93b3ee6c91 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3938922 Commit-Queue: Joanna Wang <jojwang@chromium.org> Reviewed-by: Gavin Mak <gavinmak@google.com>
diff --git a/git_cache.py b/git_cache.py index 19cbf6f..43f4391 100755 --- a/git_cache.py +++ b/git_cache.py
@@ -520,6 +520,7 @@ # ls_out lists contents in the format: gs://blah/blah/123... _, ls_out, _ = gsutil.check_call('ls', self._gs_path) + self.print('ran "gsutil ls %s": %s' % (self._gs_path, ls_out)) # Check to see if folder already exists in gs ls_out_set = set(ls_out.strip().splitlines())