Skip to content

Commit 1f0c3bf

Browse files
committed
Add the missing Git component in the suffixes
1 parent 00127a7 commit 1f0c3bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gix-path/src/env/git.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ where
3838
let varname_current = "ProgramFiles";
3939

4040
// 64-bit relative bin dir. So far, this is always mingw64, not ucrt64, clang64, or clangarm64.
41-
let suffix_64 = Path::new("bin/mingw64");
41+
let suffix_64 = Path::new("Git/bin/mingw64");
4242

4343
// 32-bit relative bin dir. So far, this is always mingw32, not clang32.
44-
let suffix_32 = Path::new("bin/mingw32");
44+
let suffix_32 = Path::new("Git/bin/mingw32");
4545

4646
// Whichever of the 64-bit or 32-bit relative bin better matches this process's architecture.
4747
// Unlike the system architecture, the process architecture is always known at compile time.

0 commit comments

Comments
 (0)