Skip to content

Commit

Permalink
[stage]
Browse files Browse the repository at this point in the history
  • Loading branch information
crschnick committed Jul 22, 2024
1 parent e2957a1 commit e7611ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/io/xpipe/app/core/AppExtensionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private void determineExtensionDirectories() throws Exception {
Path p = Path.of(localInstallation);
if (!Files.exists(p)) {
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();
Expand All @@ -106,7 +106,7 @@ private void determineExtensionDirectories() throws Exception {
.orElseThrow(() -> new IllegalArgumentException("Invalid source version: " + sv));
if (AppProperties.get().isLocatorVersionCheck() && !installVersion.equals(sourceVersion)) {
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);
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.2-6
10.2-7

0 comments on commit e7611ca

Please sign in to comment.