Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix JENKINS-12311
  • Loading branch information
gboissinot committed Apr 1, 2012
1 parent 14af999 commit 57bbfd2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -57,7 +57,7 @@ public List<ArtifactDeployerVO> invoke(File localWorkspace, VirtualChannel chann
ArtifactDeployerVO deploymentResultEntry = new ArtifactDeployerVO();
deploymentResultEntry.setId(++numberOfCurrentDeployedArtifacts);
deploymentResultEntry.setDeployed(true);
deploymentResultEntry.setFileName(renoteFile.getName());
deploymentResultEntry.setFileName(renoteFile.getCanonicalPath());
deploymentResultEntry.setRemotePath(renoteFile.getPath());
deployedArtifactsResultList.add(deploymentResultEntry);
}
Expand Down

0 comments on commit 57bbfd2

Please sign in to comment.