build.go: Also copy header files

This commit is contained in:
Alexander Neumann 2017-04-19 17:31:07 +02:00
parent 9940b7f853
commit e6ca604d24
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ func specialDir(name string) bool {
// excludePath returns true if the file should not be copied to the new GOPATH.
func excludePath(name string) bool {
ext := path.Ext(name)
if ext == ".go" || ext == ".s" {
if ext == ".go" || ext == ".s" || ext == ".h" {
return false
}