Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ public PluginRelease findById(String id) {
public PluginRelease findByNameAndVersion(String name, String version) {
List<PluginRelease> releases = findReleasesByName(name);
if (releases == null) {
throw new RuntimeException("Plugin'" + name + "' not found.");
throw new RuntimeException("Plugin' " + name + "' not found.");
}
PluginRelease release = findRelease(releases, version);
if (release == null) {
throw new RuntimeException("Plugin'" + name + "' found, but version " + version + " not found.");
throw new RuntimeException("Plugin' " + name + "' found, but version " + version + " not found. Perhaps try running `nf-test update-plugins`?");
}
return release;
}
Expand Down