cmd/go/internal/script: fix build tags of isETXTBSY #67356
Labels
FrozenDueToAge
NeedsFix
The path to resolution is known, but the work has not been done.
Testing
An issue that has been verified to require only test changes, not just a test failure.
Milestone
Go version
go version 1.22.2
Output of
go env
in your module/workspace:What did you do?
I looked at the following source files:
What did you see happen?
I saw the build tags:
//go:build unix || windows
in src/cmd/go/internal/script/cmds_posix.go//go:build !(unix || windows)
in src/cmd/go/internal/script/cmds_other.goWhat did you expect to see?
I expect to see the following build tags:
//go:build unix
in src/cmd/go/internal/script/cmds_posix.go//go:build !unix
in src/cmd/go/internal/script/cmds_other.gojust like:
//go:build unix
in src/cmd/go/internal/test/test_unix.go//go:build !unix
in src/cmd/go/internal/test/test_nonunix.goThe text was updated successfully, but these errors were encountered: