Use namespace when resolving JReleaser version. Fixes #4"
This commit is contained in:
parent
ff5713ccff
commit
082d8e6441
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class get_jreleaser {
|
|||
// resolve latest to a tagged release
|
||||
if ("latest".equalsIgnoreCase(version)) {
|
||||
var url = "https://jreleaser.org/releases/latest/download/VERSION";
|
||||
var file = Path.of("VERSION");
|
||||
var file = Path.of("JRELEASER_VERSION");
|
||||
|
||||
try (var stream = new URL(url).openStream()) {
|
||||
System.out.printf("✅ Located version marker%n");
|
||||
|
|
Loading…
Reference in a new issue