add placeholder package file

This commit is contained in:
oliverpool 2022-03-23 11:19:46 +01:00
parent 3b354c9aa7
commit 56841e6aef
2 changed files with 10 additions and 0 deletions

View file

@ -117,6 +117,13 @@ func run() error {
}
}
if err = os.WriteFile(filepath.Join(dstFolder, "placeholder.go"), []byte(`package dist
// empty package so we can use the go tool with this repository
`), 0755); err != nil {
return err
}
return nil
}

3
dist/placeholder.go vendored Executable file
View file

@ -0,0 +1,3 @@
package dist
// empty package so we can use the go tool with this repository