From ce3f79a3bf7c80e4ed66eb5de43854c87a6b4621 Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Sun, 7 Nov 2021 08:58:45 +0000 Subject: [PATCH] Add yaml to output help --- cmd/headscale/cli/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/headscale/cli/root.go b/cmd/headscale/cli/root.go index ef047f93..e5115f3d 100644 --- a/cmd/headscale/cli/root.go +++ b/cmd/headscale/cli/root.go @@ -9,7 +9,7 @@ import ( func init() { rootCmd.PersistentFlags(). - StringP("output", "o", "", "Output format. Empty for human-readable, 'json' or 'json-line'") + StringP("output", "o", "", "Output format. Empty for human-readable, 'json', 'json-line' or 'yaml'") rootCmd.PersistentFlags().Bool("force", false, "Disable prompts and forces the execution") }