This commit is contained in:
crschnick 2024-07-22 04:12:21 +00:00
parent e2957a1c67
commit e7611caf78
2 changed files with 3 additions and 3 deletions

View file

@ -93,7 +93,7 @@ public class AppExtensionManager {
Path p = Path.of(localInstallation); Path p = Path.of(localInstallation);
if (!Files.exists(p)) { if (!Files.exists(p)) {
throw new IllegalStateException( throw new IllegalStateException(
"Required local XPipe installation was not found but is required for development"); "Required local XPipe installation was not found but is required for development. See https://github.com/xpipe-io/xpipe/blob/master/CONTRIBUTING.md#development-setup");
} }
var iv = getLocalInstallVersion(); var iv = getLocalInstallVersion();
@ -106,7 +106,7 @@ public class AppExtensionManager {
.orElseThrow(() -> new IllegalArgumentException("Invalid source version: " + sv)); .orElseThrow(() -> new IllegalArgumentException("Invalid source version: " + sv));
if (AppProperties.get().isLocatorVersionCheck() && !installVersion.equals(sourceVersion)) { if (AppProperties.get().isLocatorVersionCheck() && !installVersion.equals(sourceVersion)) {
throw new IllegalStateException("Incompatible development version. Source: " + iv + ", Installation: " throw new IllegalStateException("Incompatible development version. Source: " + iv + ", Installation: "
+ sv + "\n\nPlease try to check out the matching release version in the repository."); + sv + "\n\nPlease try to check out the matching release version in the repository. See https://github.com/xpipe-io/xpipe/blob/master/CONTRIBUTING.md#development-setup");
} }
var extensions = XPipeInstallation.getLocalExtensionsDirectory(p); var extensions = XPipeInstallation.getLocalExtensionsDirectory(p);

View file

@ -1 +1 @@
10.2-6 10.2-7