From 2f79eb40312e20971c811fad4220006d4830a79b Mon Sep 17 00:00:00 2001 From: nuxen Date: Mon, 12 Aug 2024 15:25:10 +0200 Subject: [PATCH] fix(cli): pack example still using flag --- cmd/pack.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/pack.go b/cmd/pack.go index 2d37b4b..034cf59 100644 --- a/cmd/pack.go +++ b/cmd/pack.go @@ -15,7 +15,7 @@ import ( var packCmd = &cobra.Command{ Use: "pack", Short: "Test the pack api endpoint for a specified release", - Example: ` seasonpackarr test pack --rls “Series.S01.1080p.WEB-DL.H.264-RlsGrp” --client "default" --host "127.0.0.1" --port 42069 --api "your-api-key"`, + Example: ` seasonpackarr test pack “Series.S01.1080p.WEB-DL.H.264-RlsGrp” --client "default" --host "127.0.0.1" --port 42069 --api "your-api-key"`, Run: func(cmd *cobra.Command, args []string) { if len(args) == 0 { fmt.Println("Please provide a release name")