From 448a85900c36fdc1cf85691d0a2f5a6cf1a85ba9 Mon Sep 17 00:00:00 2001 From: Irene Ying Date: Wed, 31 Dec 2025 20:55:10 -0800 Subject: [PATCH] revert python3 to python --- lib/EpdFont/scripts/convert-builtin-fonts.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/EpdFont/scripts/convert-builtin-fonts.sh b/lib/EpdFont/scripts/convert-builtin-fonts.sh index 3bde0b0f..48c90e49 100755 --- a/lib/EpdFont/scripts/convert-builtin-fonts.sh +++ b/lib/EpdFont/scripts/convert-builtin-fonts.sh @@ -14,7 +14,7 @@ for size in ${BOOKERLY_FONT_SIZES[@]}; do font_name="bookerly_${size}_$(echo $style | tr '[:upper:]' '[:lower:]')" font_path="../builtinFonts/source/Bookerly/Bookerly-${style}.ttf" output_path="../builtinFonts/${font_name}.h" - python3 fontconvert.py $font_name $size $font_path --2bit > $output_path + python fontconvert.py $font_name $size $font_path --2bit > $output_path echo "Generated $output_path" done done @@ -24,7 +24,7 @@ for size in ${NOTOSANS_FONT_SIZES[@]}; do font_name="notosans_${size}_$(echo $style | tr '[:upper:]' '[:lower:]')" font_path="../builtinFonts/source/NotoSans/NotoSans-${style}.ttf" output_path="../builtinFonts/${font_name}.h" - python3 fontconvert.py $font_name $size $font_path --2bit > $output_path + python fontconvert.py $font_name $size $font_path --2bit > $output_path echo "Generated $output_path" done done @@ -34,7 +34,7 @@ for size in ${OPENDYSLEXIC_FONT_SIZES[@]}; do font_name="opendyslexic_${size}_$(echo $style | tr '[:upper:]' '[:lower:]')" font_path="../builtinFonts/source/OpenDyslexic/OpenDyslexic-${style}.otf" output_path="../builtinFonts/${font_name}.h" - python3 fontconvert.py $font_name $size $font_path --2bit > $output_path + python fontconvert.py $font_name $size $font_path --2bit > $output_path echo "Generated $output_path" done done @@ -47,9 +47,9 @@ for size in ${UI_FONT_SIZES[@]}; do font_name="ubuntu_${size}_$(echo $style | tr '[:upper:]' '[:lower:]')" font_path="../builtinFonts/source/Ubuntu/Ubuntu-${style}.ttf" output_path="../builtinFonts/${font_name}.h" - python3 fontconvert.py $font_name $size $font_path > $output_path + python fontconvert.py $font_name $size $font_path > $output_path echo "Generated $output_path" done done -python3 fontconvert.py notosans_8_regular 8 ../builtinFonts/source/NotoSans/NotoSans-Regular.ttf > ../builtinFonts/notosans_8_regular.h +python fontconvert.py notosans_8_regular 8 ../builtinFonts/source/NotoSans/NotoSans-Regular.ttf > ../builtinFonts/notosans_8_regular.h