Skip to content

Commit 6816733

Browse files
committed
fix: add skipAuthCheck annotation to zip command
1 parent 4f6fe03 commit 6816733

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

internal/command/zip.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ import (
1515

1616
func NewZipCommand(squareCli cli.SquareCLI) *cobra.Command {
1717
cmd := &cobra.Command{
18-
Use: "zip",
19-
Short: "Zip the current folder",
20-
RunE: runZipCommand(squareCli),
18+
Use: "zip",
19+
Short: "Zip the current folder",
20+
Annotations: map[string]string{"skipAuthCheck": "true"},
21+
RunE: runZipCommand(squareCli),
2122
}
2223

2324
return cmd

0 commit comments

Comments
 (0)