blob: 7f1b9174397b18a515088ca6c3560ac6b6303bd3 [file] [log] [blame]
env GO111MODULE=off
# 'go install' with no arguments should clean up after go build
cd mycmd
go build
exists mycmd$exe
go install
! exists mycmd$exe
# 'go install mycmd' does not clean up, even in the mycmd directory
go build
exists mycmd$exe
go install mycmd
exists mycmd$exe
# 'go install mycmd' should not clean up in an unrelated current directory either
cd ..
cp mycmd/mycmd$exe mycmd$exe
go install mycmd
exists mycmd$exe
-- mycmd/main.go --
package main
func main() {}