We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25e4167 + 48db7c3 commit 94c7b73Copy full SHA for 94c7b73
cli/src/main/java/com/devonfw/tools/ide/property/RepositoryProperty.java
@@ -51,6 +51,8 @@ public Path getValueAsPath(IdeContext context) {
51
Path legacyRepositoriesPath = context.getSettingsPath().resolve(context.FOLDER_LEGACY_REPOSITORIES);
52
53
Path repositoryFile = Path.of(super.getValue());
54
+ if (repositoryFile == null) return null;
55
+
56
if (!Files.exists(repositoryFile)) {
57
repositoryFile = repositoriesPath.resolve(repositoryFile.getFileName().toString() + ".properties");
58
}
0 commit comments