...

Text file src/cmd/go/testdata/script/install_relative_gobin_fail.txt

Documentation: cmd/go/testdata/script

     1env GOBIN=.
     2! go install
     3stderr 'cannot install, GOBIN must be an absolute path'
     4
     5-- go.mod --
     6module triv
     7
     8go 1.16
     9-- triv.go --
    10package main
    11
    12func main() {}

View as plain text