Skip to content
This repository has been archived by the owner on Nov 30, 2017. It is now read-only.

Commit

Permalink
Use the hub project name with the deployment of the bdio
Browse files Browse the repository at this point in the history
The createHubOutput method uses the hub project name property but the
deployHubOutput method does not use that property to find the file.
Therefore it would fail to deploy the bdio files.
  • Loading branch information
psantos1113 committed Jun 29, 2017
1 parent e1e243f commit f432928
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ private void deployHubBDIO() throws GradleException {

try {
buildToolHelper.deployHubOutput(getHubServicesFactory(), getProject().file(getOutputDirectory()),
getProject().getName());
getHubProjectName());
} catch (IntegrationException | IllegalArgumentException e) {
throw new GradleException(String.format(DEPLOY_HUB_OUTPUT_ERROR, e.getMessage()), e);
}
Expand Down

0 comments on commit f432928

Please sign in to comment.