我注意到在Linux amd64系统上,使用go1.14beta1-137-g71239b4f49版本时,在调用make.bash之后,clean.bash并未删除文件cmd/internal/objabi/zbootstrap.go。我已经通过git status --ignored确认了这个问题。
make.bash
clean.bash
cmd/internal/objabi/zbootstrap.go
git status --ignored
nr9pn0ug1#
我认为这应该由go tool dist clean清理,但我不能确定。/cc @bcmills@jayconrod
go tool dist clean
g2ieeal72#
我打赌在cmd/dist/build.go中应该将"cmd/internal/objabi"添加到cleanlist。
"cmd/internal/objabi"
cleanlist
fnatzsnv3#
我愿意尝试一下!
dldeef674#
https://golang.org/cl/216222提到了这个问题:cmd/dist: fix the bug that cmd/internal/objabi/zbootstrap.go could not be cleaned properly
cmd/dist: fix the bug that cmd/internal/objabi/zbootstrap.go could not be cleaned properly
yfwxisqw5#
我建议将提交信息更改为cmd/dist: ensure that cmd/internal/objabi/zbootstrap.go is cleaned properly谢谢
cmd/dist: ensure that cmd/internal/objabi/zbootstrap.go is cleaned properly
5条答案
按热度按时间nr9pn0ug1#
我认为这应该由
go tool dist clean
清理,但我不能确定。/cc @bcmills@jayconrod
g2ieeal72#
我打赌在cmd/dist/build.go中应该将
"cmd/internal/objabi"
添加到cleanlist
。fnatzsnv3#
我愿意尝试一下!
dldeef674#
https://golang.org/cl/216222提到了这个问题:
cmd/dist: fix the bug that cmd/internal/objabi/zbootstrap.go could not be cleaned properly
yfwxisqw5#
我建议将提交信息更改为
cmd/dist: ensure that cmd/internal/objabi/zbootstrap.go is cleaned properly
谢谢