Skip to content

Commit 32a43b7

Browse files
authored
Change delimiter in git submodule cut to double quote
The single quote causes issues with the string parsing on shells that expect double quotes.
1 parent 209c611 commit 32a43b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ MBR_HEX = lib/softdevice/mbr/hex/mbr_nrf52_2.4.1_mbr.hex
2323
LD_FILE = linker/$(MCU_SUB_VARIANT).ld
2424

2525
GIT_VERSION = $(shell git describe --dirty --always --tags)
26-
GIT_SUBMODULE_VERSIONS = $(shell git submodule status | cut -d' ' -f3,4 | paste -s -d" " -)
26+
GIT_SUBMODULE_VERSIONS = $(shell git submodule status | cut -d" " -f3,4 | paste -s -d" " -)
2727

2828
# compiled file name
2929
OUT_FILE = $(BOARD)_bootloader-$(GIT_VERSION)

0 commit comments

Comments
 (0)