From eb28118b7a61ec5c21906b6fceea657d66b4f004 Mon Sep 17 00:00:00 2001 From: Jamie Madill Date: Mon, 20 Sep 2021 18:37:26 +0000 Subject: [PATCH] Call python3.bat explicitly from gn.bat on Windows. This ensures users running from a linux-style shell call through to the right Python interpreter. Bug: None Change-Id: I2e5f2d1a02537ee86f682607670199d37225cf15 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3168710 Auto-Submit: Jamie Madill Commit-Queue: Dirk Pranke Reviewed-by: Dirk Pranke --- gn.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gn.bat b/gn.bat index 7403bfb57..4e76fec21 100644 --- a/gn.bat +++ b/gn.bat @@ -9,4 +9,4 @@ setlocal set PATH=%PATH%;%~dp0 :: Defer control. -python3 "%~dp0\gn.py" %* +python3.bat "%~dp0\gn.py" %*