Skip to content

Commit

Permalink
Patch for flags error message (#1539)
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink authored Apr 25, 2024
1 parent b2b91c7 commit 952a96b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/dependencymanager/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ package dependencymanager

import (
"fmt"

"github.com/onflow/flow-cli/internal/util"

"github.com/spf13/cobra"
Expand All @@ -46,7 +47,8 @@ var addCommand = &command.Command{
Example: "flow dependencies add testnet://0afe396ebc8eee65.FlowToken",
Args: cobra.ExactArgs(1),
},
RunS: add,
RunS: add,
Flags: &struct{}{},
}

func init() {
Expand Down

0 comments on commit 952a96b

Please sign in to comment.