Update font file downloaded by "make download-fonts"

There are noto-sans.zip and v2.0.zip available in font repo tag v2.0.
https://github.com/openmaptiles/fonts/releases/tag/v2.0

Currently this code downloads noto-sans.zip, but v2.0.zip looks like more comprehensive one which includes Noto Sans.

In my understanding noto-sans.zip is not enough and v2.0.zip is appropriate for openmaptiles style.
pull/1738/head
nhirokinet 2025-08-17 00:22:14 +09:00 zatwierdzone przez GitHub
rodzic 077e7627f1
commit b7c764ef6c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -307,9 +307,9 @@ build-style: init-dirs
.PHONY: download-fonts
download-fonts:
$(DOCKER_COMPOSE) run $(DC_OPTS) openmaptiles-tools bash -c '[ ! -d "/export/fonts" ] && mkdir /export/fonts && \
echo "Downloading fonts..." && wget -qO /export/noto-sans.zip --show-progress \
https://github.com/openmaptiles/fonts/releases/download/v2.0/noto-sans.zip && \
echo "Unzipping fonts..." && unzip -q /export/noto-sans.zip -d /export/fonts && rm /export/noto-sans.zip || \
echo "Downloading fonts..." && wget -qO /export/v2.0.zip --show-progress \
https://github.com/openmaptiles/fonts/releases/download/v2.0/v2.0.zip && \
echo "Unzipping fonts..." && unzip -q /export/v2.0.zip -d /export/fonts && rm /export/v2.0.zip || \
echo "Fonts already exist."'
.PHONY: clean