From 164fe89279799bff3facd570cfb2f614de4a65d2 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Wed, 29 May 2024 11:30:32 -0400 Subject: [PATCH] fix: describe wallet create --output (#93) Signed-off-by: Chris Gianelloni --- cmd/bursa/wallet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bursa/wallet.go b/cmd/bursa/wallet.go index a9328f2..7a85a1a 100644 --- a/cmd/bursa/wallet.go +++ b/cmd/bursa/wallet.go @@ -44,7 +44,7 @@ func walletCreateCommand() *cobra.Command { }, } - walletCreateCommand.PersistentFlags().StringVar(&output, "output", "", "") + walletCreateCommand.PersistentFlags().StringVar(&output, "output", "", "optional path to write files") return &walletCreateCommand }