mac/linux: Use python3 for .sh scripts
Newer OS versions no longer ship with Python 2 by default.
This commit is contained in:
parent
21cf732e7f
commit
0428438e72
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
python tools/gclient_hook.py
|
||||
python3 tools/gclient_hook.py
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
python tools/fix_style.py $@
|
||||
python3 tools/fix_style.py $@
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
python make_distrib.py --output-dir ../binary_distrib/ $@
|
||||
python3 make_distrib.py --output-dir ../binary_distrib/ $@
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
python tools/patcher.py
|
||||
python3 tools/patcher.py
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
python tools/patch_updater.py $@
|
||||
python3 tools/patch_updater.py $@
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
python translator.py --root-dir .. $@
|
||||
python3 translator.py --root-dir .. $@
|
||||
|
|
Loading…
Reference in New Issue