Skip to content

Commit 114de7f

Browse files
committed
Windows
1 parent 9615420 commit 114de7f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
export GIT_EXEC_PATH := $(CURDIR):$(shell git --exec-path)
1+
ifeq ($(OS),Windows_NT)
2+
PATHSEP = ;
3+
else
4+
PATHSEP = :
5+
endif
6+
export GIT_EXEC_PATH := $(CURDIR)$(PATHSEP)$(shell git --exec-path)
27
export MANPATH := $(CURDIR):$(MANPATH)
38
VERBOSE :=
49
TESTREPO := $(CURDIR)

0 commit comments

Comments
 (0)