mac/linux: Use python3 for .sh scripts

Newer OS versions no longer ship with Python 2 by default.
This commit is contained in:
Marshall Greenblatt 2022-04-06 17:46:47 -04:00
parent 21cf732e7f
commit 0428438e72
7 changed files with 7 additions and 7 deletions

View File

@ -1,2 +1,2 @@
#!/bin/sh
python tools/gclient_hook.py
python3 tools/gclient_hook.py

View File

@ -1,2 +1,2 @@
#!/bin/sh
python tools/fix_style.py $@
python3 tools/fix_style.py $@

View File

@ -1,2 +1,2 @@
#!/bin/sh
python make_distrib.py --output-dir ../binary_distrib/ $@
python3 make_distrib.py --output-dir ../binary_distrib/ $@

View File

@ -1,2 +1,2 @@
#!/bin/sh
python tools/make_version_header.py include/cef_version.h
python3 tools/make_version_header.py include/cef_version.h

View File

@ -1,2 +1,2 @@
#!/bin/sh
python tools/patcher.py
python3 tools/patcher.py

View File

@ -1,2 +1,2 @@
#!/bin/sh
python tools/patch_updater.py $@
python3 tools/patch_updater.py $@

View File

@ -1,2 +1,2 @@
#!/bin/sh
python translator.py --root-dir .. $@
python3 translator.py --root-dir .. $@