Skip to content

Commit 4097cd1

Browse files
committed
Makefile: Explicitly use Bash for git-extra-version
Fixes a weird bug where it returned 'W' on Windows.
1 parent 9064e3e commit 4097cd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ sources := $(wildcard src/brogue/*.c) $(addprefix src/platform/,main.c platformd
1010
ifeq ($(RELEASE),YES)
1111
extra_version :=
1212
else
13-
extra_version := $(shell tools/git-extra-version)
13+
extra_version := $(shell bash tools/git-extra-version)
1414
endif
1515
cppflags += -DBROGUE_EXTRA_VERSION='"$(extra_version)"'
1616

0 commit comments

Comments
 (0)