Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Commit

Permalink
Add support for setting HOCKEYAPP_INSTALL_URL
Browse files Browse the repository at this point in the history
Fixes a reversion of jenkinsci#46 from jenkinsci#42.
  • Loading branch information
mezpahlan committed Sep 25, 2018
1 parent 7a5616c commit 1949554
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/hockeyapp/HockeyappRecorder.java
Expand Up @@ -808,6 +808,10 @@ public void buildEnvVars(AbstractBuild<?, ?> build, EnvVars env) {
if (data != null) env.putAll(data);
}

public void buildEnvironment(@Nonnull Run<?, ?> build, @Nonnull EnvVars env) {
if (data != null) env.putAll(data);
}

public String getIconFileName() {
return null;
}
Expand Down

0 comments on commit 1949554

Please sign in to comment.