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.
1 parent 8a35bbd commit e8ba8f7Copy full SHA for e8ba8f7
cli/src/main/java/com/devonfw/tools/ide/property/RepositoryProperty.java
@@ -57,7 +57,7 @@ public Path getValueAsPath(IdeContext context) {
57
Path repositoryFile = Path.of(value);
58
59
if (!Files.exists(repositoryFile)) {
60
- repositoryFile = repositoriesPath.resolve(repositoryFile.getFileName().toString() + ".properties");
+ repositoryFile = repositoriesPath.resolve(value + ".properties");
61
}
62
63
Path legacyRepositoryFile = legacyRepositoriesPath.resolve(repositoryFile.getFileName().toString());
0 commit comments