Skip to content

Commit

Permalink
Tidy and small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
merschformann committed Jul 7, 2023
1 parent 42bbf74 commit 835ba69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
var rootCmd = &cobra.Command{
Use: "gobenchtransform",
Short: "Transform Go benchmark results into a format that can be used by other tools.",
Run: func(cmd *cobra.Command, args []string) {
Run: func(cmd *cobra.Command, _ []string) {
// Get the input and output files.
inputFile, err := cmd.Flags().GetString("input")
if err != nil {
Expand Down
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ module github.com/merschformann/gobenchtransform

go 1.19

require github.com/spf13/cobra v1.7.0

require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/cobra v1.7.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
)

0 comments on commit 835ba69

Please sign in to comment.