Skip to content

Commit

Permalink
fix: reinstate missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
J0 committed May 7, 2024
1 parent dadb437 commit fd978a1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/utils/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -877,6 +877,7 @@ func loadEnvIfExists(path string) error {
if err := godotenv.Load(path); err != nil && !errors.Is(err, os.ErrNotExist) {
return errors.Errorf("failed to load %s: %w", Bold(".env"), err)
}
return nil
}

func validateHookURI(uri, hookName string) error {
Expand Down

0 comments on commit fd978a1

Please sign in to comment.