examples/restful_server: fix Makefile syntax for flashing SPIFFS

Closes https://github.com/espressif/esp-idf/issues/4050
This commit is contained in:
Ivan Grokhotkov 2019-10-07 13:28:38 +02:00
parent 2f38a1a362
commit 75f2948e02

View File

@ -7,7 +7,8 @@ include $(IDF_PATH)/make/project.mk
ifdef CONFIG_EXAMPLE_WEB_DEPLOY_SF
WEB_SRC_DIR = $(shell pwd)/front/web-demo
ifneq ($(wildcard $(WEB_SRC_DIR)/dist/.*),)
$(eval $(call spiffs_create_partition_image,www,$(WEB_SRC_DIR)/dist,FLASH_IN_PROJECT))
SPIFFS_IMAGE_FLASH_IN_PROJECT := 1
$(eval $(call spiffs_create_partition_image,www,$(WEB_SRC_DIR)/dist))
else
$(error $(WEB_SRC_DIR)/dist doesn't exist. Please run 'npm run build' in $(WEB_SRC_DIR))
endif