From 7b6bda738ef1654c6bd54c03c543155de4d8de9d Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Tue, 23 Jun 2026 07:53:46 +0800 Subject: [PATCH] fix: correct occured to occurred typo in error message --- internal/utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {