Skip to content

Commit

Permalink
Merge pull request #18 from embold/development
Browse files Browse the repository at this point in the history
debugging release pipeline
  • Loading branch information
bhidesacl authored Apr 14, 2024
2 parents 3ee934f + 4c8fd4c commit ef16a06
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 ef16a06

Please sign in to comment.