Skip to content

Commit 52426a2

Browse files
committed
Remove an excess colon [ci skip]
1 parent bee02c4 commit 52426a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

defs/gmake.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ pull-github: fetch-github
275275
$(call pull-github,$(PR))
276276

277277
define pull-github
278-
$(eval GITHUB_MERGE_BASE := $(shell $(GIT_LOG_FORMAT):%H -1)
278+
$(eval GITHUB_MERGE_BASE := $(shell $(GIT_LOG_FORMAT)%H -1)
279279
$(eval GITHUB_MERGE_BRANCH := $(shell $(GIT_IN_SRC) symbolic-ref --short HEAD))
280280
$(eval GITHUB_MERGE_WORKTREE := $(shell mktemp -d "$(srcdir)/gh-$(1)-XXXXXX"))
281281
$(GIT_IN_SRC) worktree prune

template/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,4 +748,4 @@ yes-test-syntax-suggest: $(PREPARE_SYNTAX_SUGGEST)
748748
no-test-syntax-suggest:
749749

750750
yesterday:
751-
$(GIT_IN_SRC) reset --hard `TZ=UTC-9 $(GIT_LOG_FORMAT):%H -1 --before=00:00`
751+
$(GIT_IN_SRC) reset --hard `TZ=UTC-9 $(GIT_LOG_FORMAT)%H -1 --before=00:00`

win32/Makefile.sub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1393,5 +1393,5 @@ exts: rubyspec-capiext
13931393
yesterday:
13941394
(set TZ=UTC-9) && \
13951395
for /f "usebackq" %H in \
1396-
(`$(GIT_LOG_FORMAT):%H -1 "--before=00:00"`) do \
1396+
(`$(GIT_LOG_FORMAT)%H -1 "--before=00:00"`) do \
13971397
$(GIT_IN_SRC) reset --hard %%H

0 commit comments

Comments
 (0)