Skip to content

Commit 38992ce

Browse files
fix: add replace directive for vendoring case sensitivity
Add replace directive in go.mod to ensure consistent lowercase module path for vendoring compatibility on case-sensitive filesystems (Linux). Fixes #234
1 parent 1c8ea5b commit 38992ce

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

go.mod

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,9 @@ require (
3737
golang.org/x/net v0.47.0 // indirect
3838
gopkg.in/yaml.v3 v3.0.1 // indirect
3939
)
40+
41+
// Ensure canonical lowercase module path for vendoring compatibility.
42+
// This prevents issues on case-sensitive filesystems (Linux) where vendoring
43+
// might create directories with inconsistent casing.
44+
// See: https://github.com/golang/go/issues/38342
45+
replace github.com/Microsoft/go-mssqldb => ./

0 commit comments

Comments
 (0)