Skip to content

Commit

Permalink
Fix root command usage
Browse files Browse the repository at this point in the history
The root command was showing as "app" instead of "k3sup".

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
  • Loading branch information
alexellis committed Aug 19, 2019
1 parent fd6b667 commit 17442df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func main() {

cmdJoin := cmd.MakeJoin()

var rootCmd = &cobra.Command{Use: "app"}
var rootCmd = &cobra.Command{Use: "k3sup"}

rootCmd.AddCommand(cmdInstall)
rootCmd.AddCommand(cmdVersion)
Expand Down

0 comments on commit 17442df

Please sign in to comment.