aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/utils.py')
-rw-r--r--infra/bots/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/infra/bots/utils.py b/infra/bots/utils.py
index a60ebe97b8..12b2ad4776 100644
--- a/infra/bots/utils.py
+++ b/infra/bots/utils.py
@@ -19,6 +19,7 @@ import uuid
GCLIENT = 'gclient.bat' if sys.platform == 'win32' else 'gclient'
GIT = 'git.bat' if sys.platform == 'win32' else 'git'
+WHICH = 'where' if sys.platform == 'win32' else 'which'
class print_timings(object):