We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9615420 commit 114de7fCopy full SHA for 114de7f
Makefile
@@ -1,4 +1,9 @@
1
-export GIT_EXEC_PATH := $(CURDIR):$(shell git --exec-path)
+ifeq ($(OS),Windows_NT)
2
+ PATHSEP = ;
3
+else
4
+ PATHSEP = :
5
+endif
6
+export GIT_EXEC_PATH := $(CURDIR)$(PATHSEP)$(shell git --exec-path)
7
export MANPATH := $(CURDIR):$(MANPATH)
8
VERBOSE :=
9
TESTREPO := $(CURDIR)
0 commit comments