From 7e55700844c9f9460bae817f3f7a4befec8a5959 Mon Sep 17 00:00:00 2001 From: Edward Lesmes Date: Mon, 11 Nov 2019 21:17:24 +0000 Subject: [PATCH] fetch: Fix GCLIENT_PY3 on Windows Bug: 939847 Change-Id: Ic5f87c7423ab72086ca928fecc15ed60408fbedd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1900165 Reviewed-by: Anthony Polito Commit-Queue: Edward Lesmes --- fetch.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch.bat b/fetch.bat index 899972d6c..20c4f46ae 100755 --- a/fetch.bat +++ b/fetch.bat @@ -13,7 +13,7 @@ set PATH=%PATH%;%~dp0 :: Defer control. IF "%GCLIENT_PY3%" == "1" ( - vpython3 "%~dp0\fetch.py" %*y + vpython3 "%~dp0\fetch.py" %* ) ELSE ( vpython "%~dp0\fetch.py" %* )