Skip to content

Commit

Permalink
add newline character
Browse files Browse the repository at this point in the history
  • Loading branch information
duhow committed Dec 30, 2024
1 parent f9a5914 commit 185848a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ release_set_config:
@IMAGE_MD5=$(shell md5sum $(DESTDIR)/$(IMAGE_NAME) | cut -d ' ' -f 1); \
echo "" >> $(RELEASE_DIR)/metadata; \
echo "config core 'hash'" >> $(RELEASE_DIR)/metadata; \
printf "\toption ROOTFS '%s'" "$$IMAGE_MD5" >> $(RELEASE_DIR)/metadata
printf "\toption ROOTFS '%s'\n" "$$IMAGE_MD5" >> $(RELEASE_DIR)/metadata
ifneq ($(LINUX),none)
@LINUX_MD5=$(shell md5sum $(LINUX) | cut -d ' ' -f 1); \
printf "\toption LINUX '%s'" "$$LINUX_MD5" >> $(RELEASE_DIR)/metadata
printf "\toption LINUX '%s'\n" "$$LINUX_MD5" >> $(RELEASE_DIR)/metadata
endif

release_pack:
Expand Down

0 comments on commit 185848a

Please sign in to comment.