Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down