We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b9d7fa0 + 8ada0b0 commit b2b5c8bCopy full SHA for b2b5c8b
testdata/README.md
@@ -0,0 +1,3 @@
1
+Some of the test data in this folder contains colon characters which causes "go get" commands to fail with "invalid char ':'".
2
+The empty go.mod file is a workaround to prevent this error. This effectively makes this folder its own go module, so it will be
3
+ignored when "go get" is executed.
testdata/go.mod
+// This empty go.mod file ensures that the testdata folder is not included
+// in the top-level module. This prevents issues such as unsupported characters
+// in path names.
0 commit comments