diff --git a/internal/utils/utils.go b/internal/utils/utils.go index da78d6a..bcb529f 100644 --- a/internal/utils/utils.go +++ b/internal/utils/utils.go @@ -68,7 +68,7 @@ func DirExists(path string) (bool, error) { if os.IsNotExist(err) { return false, nil } - return false, errors.Wrapf(err, "error occured when checking if directory %q exists", path) + return false, errors.Wrapf(err, "error occurred when checking if directory %q exists", path) } func VendorExists() (bool, error) {