Skip to content

Commit

Permalink
fix debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
jjiwooLim committed Oct 24, 2023
1 parent 59e6e62 commit 300bbb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class ArtifactDownloadUtil {
def sig = downloadFile(project, config, coordinates);
//if signature and esa file are not in same directory, copy signature file to esa parent directory.
if (!sig.getParent().equals(esa.getParent())) {
project.getLogger().debug("Copying " + sig + " to esa.getAbsolutePath()" + ".asc")
project.getLogger().debug("Copying " + sig + " to " + esa.getAbsolutePath() + ".asc")
FileUtils.copyFile(sig, new File(esa.getAbsolutePath() + ".asc"))
}
return sig
Expand Down

0 comments on commit 300bbb8

Please sign in to comment.