%PDF- %PDF-
Direktori : /usr/local/go/src/cmd/go/testdata/script/ |
Current File : //usr/local/go/src/cmd/go/testdata/script/mod_get_cmd.txt |
env GO111MODULE=on [short] skip # Test that when 'go get' is run from $GOBIN, it does not delete binaries # after it installs them. Verifies golang.org/issue/32766. go get example.com/tools/cmd/hello # 'go get' should not delete the command when run from $GOPATH/bin cd $GOPATH/bin exists hello$GOEXE go get example.com/tools/cmd/hello exists hello$GOEXE # 'go get' should not delete the command when run from a different $GOBIN mkdir $WORK/bin cd $WORK/bin env GOBIN=$WORK/bin go get example.com/tools/cmd/hello exists hello$GOEXE