Skip to content

Commit

Permalink
esp32/Makefile: Fix printing of supported git hash.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmo committed Sep 20, 2019
1 parent d96391a commit c33a4cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ports/esp32/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ ESPIDF = $(IDF_PATH)
else
$(info The ESPIDF variable has not been set, please set it to the root of the esp-idf repository.)
$(info See README.md for installation instructions.)
$(call print_supported_git_hash)
$(error ESPIDF not set)
print_supported_git_hash
endif
endif

Expand Down Expand Up @@ -97,7 +97,7 @@ $(info The git hash of ESP IDF does not match the supported version)
$(info The build may complete and the firmware may work but it is not guaranteed)
$(info ESP IDF path: $(ESPIDF))
$(info Current git hash: $(ESPIDF_CURHASH))
print_supported_git_hash
$(call print_supported_git_hash)
endif

# pretty format of ESP IDF version, used internally by the IDF
Expand Down

0 comments on commit c33a4cc

Please sign in to comment.