Skip to content
This repository has been archived by the owner on Aug 6, 2023. It is now read-only.

Commit

Permalink
Suppress the annoy lint message
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Jul 15, 2023
1 parent 64ea81c commit d738450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func GetTargetPath() (string, error) {
}

if !os.IsNotExist(err) {
return "", fmt.Errorf("Can not open %s: %w", path, err)
return "", fmt.Errorf("can not open %s: %w", path, err)
}
}
return "", fmt.Errorf("%v are not found", paths)
Expand Down

0 comments on commit d738450

Please sign in to comment.