From 157fcad161453acee2fcd9698da019e6ae69f185 Mon Sep 17 00:00:00 2001 From: nhmall Date: Mon, 10 Nov 2025 08:24:39 -0500 Subject: [PATCH] troubleshoot Terminus font download in CI environment --- sys/msdos/fetch-cross-compiler.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys/msdos/fetch-cross-compiler.sh b/sys/msdos/fetch-cross-compiler.sh index 36558a00c..26c84a36a 100755 --- a/sys/msdos/fetch-cross-compiler.sh +++ b/sys/msdos/fetch-cross-compiler.sh @@ -214,6 +214,7 @@ if [ -d djgpp/target ]; then cd ../../ fi +set -x FONT_VERSION="4.49" FONT_FILE="terminus-font-$FONT_VERSION" @@ -228,13 +229,15 @@ if [ ! -d "$FONT_LFILE" ]; then #Mac curl -L $FONT_URL --output $FONT_RFILE else - wget --quiet --no-hsts $FONT_URL +# wget --quiet --no-hsts $FONT_URL + curl -L $FONT_URL --output $FONT_RFILE fi tar -xvf $FONT_RFILE rm $FONT_RFILE else echo "terminus fonts are already available in lib/$FONT_LFILE" fi +set +x cd ../