Skip to content

Commit

Permalink
verify: print a message if the verification succeeded
Browse files Browse the repository at this point in the history
The verify operation did not print anything on success.
Print a successful message to indicate that something happened and it
succeeded.
  • Loading branch information
fho committed Nov 29, 2023
1 parent 5800fe2 commit d1cf175
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/cmd/verify.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package cmd

import (
"fmt"

"github.com/spf13/cobra"

"github.com/simplesurance/dependencies-tool/internal/deps"
Expand Down Expand Up @@ -45,5 +47,7 @@ func (c *verify) run(*cobra.Command, []string) error {
return err
}

fmt.Println("verification successful")

return nil
}

0 comments on commit d1cf175

Please # to comment.