kopia lustrzana https://github.com/openmaptiles/openmaptiles
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
rodzic
077e7627f1
commit
b7c764ef6c
6
Makefile
6
Makefile
|
@ -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
|
||||
|
|
Ładowanie…
Reference in New Issue