| Index: dart/tools/bots/bot_utils.py
|
| diff --git a/dart/tools/bots/bot_utils.py b/dart/tools/bots/bot_utils.py
|
| index fb29a216ebe3e376fecc71e64deb4f08ab5c8c9c..c506014f611258430fc4fa8c2555afc081525856 100644
|
| --- a/dart/tools/bots/bot_utils.py
|
| +++ b/dart/tools/bots/bot_utils.py
|
| @@ -186,7 +186,7 @@ class GSUtil(object):
|
| gsutil_command = [sys.executable, GSUtil.GSUTIL_PATH]
|
|
|
| run(gsutil_command + gsutil_args, env=env,
|
| - shell=GSUtil.GSUTIL_IS_SHELL_SCRIPT)
|
| + shell=(GSUtil.GSUTIL_IS_SHELL_SCRIPT and sys.platform == 'win32'))
|
|
|
| def upload(self, local_path, remote_path, recursive=False, public=False):
|
| assert remote_path.startswith('gs://')
|
|
|