Skip to content

Commit 4c9df5b

Browse files
authored
Merge pull request #147 from nitz/patch-1
Change delimiter in git submodule cut to double quote
2 parents 209c611 + 35429d0 commit 4c9df5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ MBR_HEX = lib/softdevice/mbr/hex/mbr_nrf52_2.4.1_mbr.hex
2222
# linker by MCU eg. nrf52840.ld
2323
LD_FILE = linker/$(MCU_SUB_VARIANT).ld
2424

25-
GIT_VERSION = $(shell git describe --dirty --always --tags)
26-
GIT_SUBMODULE_VERSIONS = $(shell git submodule status | cut -d' ' -f3,4 | paste -s -d" " -)
25+
GIT_VERSION != git describe --dirty --always --tags
26+
GIT_SUBMODULE_VERSIONS != 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)