Skip to content

Commit 0428438

Browse files
committedApr 8, 2022
mac/linux: Use python3 for .sh scripts
Newer OS versions no longer ship with Python 2 by default.
1 parent 21cf732 commit 0428438

7 files changed

+7
-7
lines changed
 

‎cef_create_projects.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
python tools/gclient_hook.py
2+
python3 tools/gclient_hook.py

‎tools/fix_style.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
python tools/fix_style.py $@
2+
python3 tools/fix_style.py $@

‎tools/make_distrib.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
python make_distrib.py --output-dir ../binary_distrib/ $@
2+
python3 make_distrib.py --output-dir ../binary_distrib/ $@

‎tools/make_version_header.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
python tools/make_version_header.py include/cef_version.h
2+
python3 tools/make_version_header.py include/cef_version.h

‎tools/patch.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
python tools/patcher.py
2+
python3 tools/patcher.py

‎tools/patch_updater.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
python tools/patch_updater.py $@
2+
python3 tools/patch_updater.py $@

‎tools/translator.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
python translator.py --root-dir .. $@
2+
python3 translator.py --root-dir .. $@

0 commit comments

Comments
 (0)
Please sign in to comment.