Skip to content

Commit

Permalink
Fix static file downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
duncte123 committed Jun 23, 2024
1 parent 902d5e0 commit 46cad12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ for font in 'cubano-regular-webfont.eot' 'cubano-regular-webfont.woff' 'cubano-r
'MuseoSans_300_Italic-webfont.eot' 'MuseoSans_300_Italic-webfont.woff' 'MuseoSans_300_Italic-webfont.ttf' 'MuseoSans_300_Italic-webfont.svg' ;
do
if [ ! -f "/var/www/html/static/res/fonts/$font" ]; then
echo "https://gamesdonequick.com/static/res/fonts/$font"
curl "https://gamesdonequick.com/static/res/fonts/$font" -o "/var/www/html/static/res/fonts/$font"
echo "https://tracker.gamesdonequick.com/static/res/fonts/$font"
curl "https://tracker.gamesdonequick.com/static/res/fonts/$font" -o "/var/www/html/static/res/fonts/$font"
fi
done

Expand Down

0 comments on commit 46cad12

Please sign in to comment.