mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
[stage]
This commit is contained in:
parent
e2957a1c67
commit
e7611caf78
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||||
|
|
2
version
2
version
|
@ -1 +1 @@
|
||||||
10.2-6
|
10.2-7
|
||||||
|
|
Loading…
Reference in a new issue