We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13a5775 commit 5445616Copy full SHA for 5445616
cli/signature.go
@@ -33,7 +33,7 @@ func signature() *cobra.Command {
33
34
func verifySig() *cobra.Command {
35
cmd := &cobra.Command{
36
- Use: "verify",
+ Use: "verify <extension.vsix> <signature.p7s>",
37
Short: "Decode & verify a signature archive.",
38
Args: cobra.ExactArgs(2),
39
RunE: func(cmd *cobra.Command, args []string) error {
@@ -49,7 +49,7 @@ func verifySig() *cobra.Command {
49
return xerrors.Errorf("read %q: %w", p7sFile, err)
50
}
51
52
- msg, err := easyzip.GetZipFileReader(data, ".signature.manifest")
+ msg, err := easyzip.GetZipFileReader(data, extensionVsix)
53
if err != nil {
54
return xerrors.Errorf("get manifest: %w", err)
55
0 commit comments