From 6c54801b5dd33199ff8c287984e306321881e3db Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Wed, 31 Jul 2024 09:21:25 -0600 Subject: [PATCH] Fixed syntax error with command description --- cmd/list.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/list.go b/cmd/list.go index 89cd847..ed02dfc 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -19,10 +19,10 @@ var listCmd = &cobra.Command{ Use: "list", Short: "List information stored in cache from a scan", Long: "Prints all of the host and associated data found from performing a scan.\n" + - "See the 'scan' command on how to perform a scan.\n\n" + - "Examples:\n" + - " magellan list\n" + - " magellan list " + "See the 'scan' command on how to perform a scan.\n\n" + + "Examples:\n" + + " magellan list\n" + + " magellan list --cache ./assets.db", Run: func(cmd *cobra.Command, args []string) { probeResults, err := sqlite.GetProbeResults(cachePath) if err != nil {