Skip to content

Commit

Permalink
debugging release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
bhidesacl committed Apr 14, 2024
1 parent f34b82b commit 4c8fd4c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,14 @@ protected Mojo lookupConfiguredMojo(File pom, String goal) throws Exception {
protected String emboldUrl() {
String url = System.getProperty("embold.host.url");
if(StringUtils.isEmpty(url)) {
System.out.println("No property embold.host.url");
url = System.getenv("embold.host.url");
if(StringUtils.isEmpty(url)) {
System.out.println("No env var embold.host.url");
}
}

System.out.println("url: " + url);
return url;
}

Expand Down

0 comments on commit 4c8fd4c

Please sign in to comment.