Change delimiter in git submodule cut to double quote

The single quote causes issues with the string parsing on shells that expect double quotes.
This commit is contained in:
Chris Dailey
2020-07-15 01:45:49 -04:00
committed by GitHub
parent 209c611a8b
commit 32a43b71e6
+1 -1
View File
@@ -23,7 +23,7 @@ MBR_HEX = lib/softdevice/mbr/hex/mbr_nrf52_2.4.1_mbr.hex
LD_FILE = linker/$(MCU_SUB_VARIANT).ld
GIT_VERSION = $(shell git describe --dirty --always --tags)
GIT_SUBMODULE_VERSIONS = $(shell git submodule status | cut -d' ' -f3,4 | paste -s -d" " -)
GIT_SUBMODULE_VERSIONS = $(shell git submodule status | cut -d" " -f3,4 | paste -s -d" " -)
# compiled file name
OUT_FILE = $(BOARD)_bootloader-$(GIT_VERSION)