Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8107cbf

Browse filesBrowse files
authored
Merge pull request #1697 from EliahKagan/find-daemon
Ask git where its daemon is and use that
2 parents 4345faa + 04f3200 commit 8107cbf
Copy full SHA for 8107cbf

File tree

2 files changed

+1
-4
lines changed
Filter options

2 files changed

+1
-4
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,6 @@ _Important_: Right after cloning this repository, please be sure to have execute
121121
the `./init-tests-after-clone.sh` script in the repository root. Otherwise
122122
you will encounter test failures.
123123

124-
On _Windows_, make sure you have `git-daemon` in your PATH. For MINGW-git, the `git-daemon.exe`
125-
exists in `Git\mingw64\libexec\git-core\`.
126-
127124
#### Install test dependencies
128125

129126
Ensure testing libraries are installed. This is taken care of already if you installed with:

‎test/lib/helper.py

Copy file name to clipboardExpand all lines: test/lib/helper.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def git_daemon_launched(base_path, ip, port):
182182
# and then CANNOT DIE!
183183
# So, invoke it as a single command.
184184
daemon_cmd = [
185-
"git-daemon",
185+
osp.join(Git()._call_process("--exec-path"), "git-daemon"),
186186
"--enable=receive-pack",
187187
"--listen=%s" % ip,
188188
"--port=%s" % port,

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.