diff options
Diffstat (limited to 'tools/nogo/build.go')
-rw-r--r-- | tools/nogo/build.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/nogo/build.go b/tools/nogo/build.go index 4067bb480..003533c71 100644 --- a/tools/nogo/build.go +++ b/tools/nogo/build.go @@ -31,3 +31,8 @@ func findStdPkg(GOOS, GOARCH, path string) (io.ReadCloser, error) { } return os.Open(fmt.Sprintf("external/go_sdk/pkg/%s_%s/%s.a", GOOS, GOARCH, path)) } + +// ReleaseTags returns nil, indicating that the defaults should be used. +func ReleaseTags() ([]string, error) { + return nil, nil +} |