tools: win: Switch to python3.bat

The python.bat file is removed in never versions of depot_tools.
This commit is contained in:
Marshall Greenblatt 2024-01-24 17:06:54 -05:00
parent a0446a3c8a
commit 132ac7a180
7 changed files with 7 additions and 7 deletions

View File

@ -1,2 +1,2 @@
@echo off
python.bat %~dp0\fix_style.py %*
python3.bat %~dp0\fix_style.py %*

View File

@ -19,7 +19,7 @@ goto end
:found_exe
:: Environment variables inserted into the Doxyfile via `$(VAR_NAME)` syntax.
for /F %%i in ('python.bat %~dp0\cef_version.py current') do set PROJECT_NUMBER=%%i
for /F %%i in ('python3.bat %~dp0\cef_version.py current') do set PROJECT_NUMBER=%%i
:: Run from the top-level CEF directory so that relative paths resolve correctly.
set CURRENT_PATH="%CD%"

View File

@ -1,2 +1,2 @@
@echo off
python.bat %~dp0\make_distrib.py --output-dir %~dp0\..\binary_distrib\ %*
python3.bat %~dp0\make_distrib.py --output-dir %~dp0\..\binary_distrib\ %*

View File

@ -1,2 +1,2 @@
@echo off
python.bat tools\make_version_header.py include\cef_version.h
python3.bat tools\make_version_header.py include\cef_version.h

View File

@ -1,2 +1,2 @@
@echo off
python.bat %~dp0\patcher.py
python3.bat %~dp0\patcher.py

View File

@ -1,2 +1,2 @@
@echo off
python.bat %~dp0\patch_updater.py %*
python3.bat %~dp0\patch_updater.py %*

View File

@ -1,3 +1,3 @@
@echo off
call python.bat %~dp0\translator.py --root-dir %~dp0\.. %*
call python3.bat %~dp0\translator.py --root-dir %~dp0\.. %*
pause