Skip to content

Commit 5d94abf

Browse files
committed
Merge pull request mickelson#189 from h0tw1r3/master
Count merge commits in version
2 parents a0a93a2 + 6647498 commit 5d94abf

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
@@ -369,7 +369,7 @@ DEP = $(patsubst %,$(SRC_DIR)/%,$(_DEP))
369369

370370
# Parse version from git
371371
VER_TAG := $(shell git describe --tags --abbrev=0 2>/dev/null || echo $(FE_VERSION))
372-
VER_COUNT := $(shell git rev-list --no-merges --count ${VER_TAG}..HEAD 2>/dev/null || echo 0)
372+
VER_COUNT := $(shell git rev-list --count ${VER_TAG}..HEAD 2>/dev/null || echo 0)
373373
VER_TEMP = $(subst -, ,$(VER_TAG))
374374
VER_PARTS = $(subst ., ,$(word 1,$(VER_TEMP)))
375375
VER_MAJOR = $(subst v,,$(word 1,$(VER_PARTS)))

0 commit comments

Comments
 (0)