add placeholder package file
This commit is contained in:
parent
3b354c9aa7
commit
56841e6aef
2 changed files with 10 additions and 0 deletions
|
@ -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
3
dist/placeholder.go
vendored
Executable file
|
@ -0,0 +1,3 @@
|
|||
package dist
|
||||
|
||||
// empty package so we can use the go tool with this repository
|
Loading…
Reference in a new issue