Skip to content

Commit

Permalink
[backend] refine version already published err messaage
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenVoich committed Jul 11, 2024
1 parent b7db8a8 commit a1567ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/main/PackagePublisher.mo
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ module {
ver == config.version;
});
if (sameVersionOpt != null) {
return #err(config.name # "@" # config.version # " already published");
return #err(config.name # "@" # config.version # " already published\nPlease increment the package version in the mops.toml file.");
};
};
case (null) {};
Expand Down

0 comments on commit a1567ac

Please sign in to comment.