Minor makefile cleanup followup #821 (#823)

Per @zstadler recommendations in
21053e4a5f
pull/826/head
Yuri Astrakhan 2020-04-22 14:55:13 -04:00 zatwierdzone przez GitHub
rodzic 21053e4a5f
commit 95ddc34295
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 8 dodań i 8 usunięć

Wyświetl plik

@ -202,7 +202,7 @@ postserve-start: db-start
@echo "* --> can view it locally (use make maputnik-start)" @echo "* --> can view it locally (use make maputnik-start)"
@echo "* --> or can use https://maputnik.github.io/editor" @echo "* --> or can use https://maputnik.github.io/editor"
@echo "* " @echo "* "
@echo "* set data source / TileJSON URL to http://localhost:8090" @echo "* set data source / TileJSON URL to http://$(OMT_HOST):8090"
@echo "* " @echo "* "
@echo "***********************************************************" @echo "***********************************************************"
@echo " " @echo " "
@ -295,13 +295,13 @@ list-docker-images:
.PHONY: refresh-docker-images .PHONY: refresh-docker-images
refresh-docker-images: refresh-docker-images:
@if test "$(NO_REFRESH)"; then \ ifneq ($(strip $(NO_REFRESH)),)
echo "Skipping docker image refresh" ;\ @echo "Skipping docker image refresh"
else \ else
echo "" ;\ @echo ""
echo "Refreshing docker images... Use NO_REFRESH=1 to skip." ;\ @echo "Refreshing docker images... Use NO_REFRESH=1 to skip."
$(DOCKER_COMPOSE) pull --ignore-pull-failures ;\ $(DOCKER_COMPOSE) pull --ignore-pull-failures
fi endif
.PHONY: remove-docker-images .PHONY: remove-docker-images
remove-docker-images: remove-docker-images: