Skip to content

Commit

Permalink
chore: remove tag variable in main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
yquansah committed Jan 8, 2024
1 parent d8bee85 commit 3b2238c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions build/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import (
var (
languages string
push bool
tag string
languageToFn = map[string]buildFn{
"python": pythonBuild,
"rust": rustBuild,
Expand All @@ -28,7 +27,6 @@ var (
func init() {
flag.StringVar(&languages, "languages", "", "comma separated list of which language(s) to run builds for")
flag.BoolVar(&push, "push", false, "push built artifacts to registry")
flag.StringVar(&tag, "tag", "", "tag to use for release")
}

func main() {
Expand Down

0 comments on commit 3b2238c

Please sign in to comment.