1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-25 14:40:28 +12:00

Call python3 rather than python in build scripts

This prevents the build scripts failing when Python 2 isn't installed.
This commit is contained in:
xofe 2020-08-14 06:15:30 +00:00
parent c9ddc9d5d0
commit 93edb4aca0
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ cp ./platform/chromium/manifest.json $DES/
cp LICENSE.txt $DES/
echo "*** uMatrix.chromium: Generating meta..."
python tools/make-chromium-meta.py $DES/
python3 tools/make-chromium-meta.py $DES/
if [ "$1" = all ]; then
echo "*** uMatrix.chromium: Creating package..."

View file

@ -21,7 +21,7 @@ cp platform/firefox/*.js $DES/js/
cp platform/firefox/manifest.json $DES/
echo "*** uMatrix.firefox: Generating meta..."
python tools/make-firefox-meta.py $DES/
python3 tools/make-firefox-meta.py $DES/
if [ "$1" = all ]; then
echo "*** uMatrix.firefox: Creating package..."

View file

@ -34,6 +34,6 @@ cp -R ./src/_locales/tr $DES/_locales/
cp -R ./src/_locales/zh_TW $DES/_locales/
echo "*** uMatrix.opera: Generating meta..."
python tools/make-opera-meta.py $DES/
python3 tools/make-opera-meta.py $DES/
echo "*** uMatrix.opera: Package done."