diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-29 10:13:51 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-29 10:13:51 +0100 |
commit | aa93cbb2393b538a22dea0b29b56fa8f2cb3c18c (patch) | |
tree | 139bd630ab9f291a1992c6ac261b6630ba4c7e33 /verify/cmd/verify.go | |
parent | ae1c1346c1cd9abece03f02faab6546e1a08155d (diff) | |
download | fsverify-aa93cbb2393b538a22dea0b29b56fa8f2cb3c18c.tar.gz fsverify-aa93cbb2393b538a22dea0b29b56fa8f2cb3c18c.tar.bz2 |
Rename fsverify go module
Diffstat (limited to 'verify/cmd/verify.go')
-rw-r--r-- | verify/cmd/verify.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/verify/cmd/verify.go b/verify/cmd/verify.go index d0360f6..b5fa1cb 100644 --- a/verify/cmd/verify.go +++ b/verify/cmd/verify.go @@ -7,8 +7,8 @@ import ( "os" "sync" - "github.com/axtloss/fsverify/config" - "github.com/axtloss/fsverify/core" + "github.com/axtloss/fsverify/verify/config" + "github.com/axtloss/fsverify/verify/core" "github.com/spf13/cobra" ) @@ -166,6 +166,7 @@ func ValidateCommand(_ *cobra.Command, args []string) error { for err := range errChan { if err != nil { + WarnUser() return err } } |