Skip to content

Commit

Permalink
Change placeholder type for error
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofMamak committed Oct 31, 2024
1 parent 4890dbe commit f695d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/flutter_config_version_guard.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func ensureSufficientVersion(versionConstraint string) error {

version, err := version.NewVersion(Version)
if err != nil {
return fmt.Errorf("poe2arb version format is invalid: %s", err)
return fmt.Errorf("poe2arb version format is invalid: %w", err)
}

if !constraint.Check(version) {
Expand Down

0 comments on commit f695d3a

Please sign in to comment.