commit | c00f5306c5e961efb1b58122a7f8fdcf85d34936 | [log] [tgz] |
---|---|---|
author | Brian Osman <brianosman@google.com> | Mon Mar 20 12:17:02 2017 -0400 |
committer | Brian Osman <brianosman@google.com> | Mon Mar 20 16:45:13 2017 +0000 |
tree | f41ddb2167719b9e10387d554044900bb941faf1 | |
parent | ed182d7c9020a0a533ada3e601183f34e4da7504 [diff] |
Fix expected extension for CIPD on Windows New depot_tools copy is a batch file BUG=skia: Change-Id: Id1497f7f7d7d93600fbfbf5991f7582380781ae8 Reviewed-on: https://skia-review.googlesource.com/9896 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
diff --git a/infra/bots/assets/asset_utils.py b/infra/bots/assets/asset_utils.py index 244502e..c166495 100644 --- a/infra/bots/assets/asset_utils.py +++ b/infra/bots/assets/asset_utils.py
@@ -49,7 +49,7 @@ def __init__(self, cipd_url=DEFAULT_CIPD_SERVICE_URL): self._cipd = 'cipd' if sys.platform == 'win32': - self._cipd = 'cipd.exe' + self._cipd = 'cipd.bat' self._cipd_url = cipd_url self._check_setup()