Skip to content

Commit

Permalink
Merge pull request bisq-network#821 from alvasw/electrum_packager_ren…
Browse files Browse the repository at this point in the history
…ame_register_verified_electrum_binary

ElectrumPackager: Rename registerVerifiedElectrumBinary()
  • Loading branch information
alvasw committed May 3, 2023
2 parents adb4089 + b4af0b1 commit 1f017f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ElectrumBinaryPackager(
if (isMacOS()) {
registerDmgExtractionTask()
} else {
registerVerifiedElectrumBinary()
registerCopyVerifiedElectrumBinary()
}

extractDmgOrCopyTask.configure {
Expand Down Expand Up @@ -59,7 +59,7 @@ class ElectrumBinaryPackager(
outputDirectory.set(binariesDir)
}

private fun registerVerifiedElectrumBinary(): TaskProvider<out Task> =
private fun registerCopyVerifiedElectrumBinary(): TaskProvider<out Task> =
project.tasks.register<Copy>("copyVerifiedElectrumBinary") {
from(binaryDownloader.verifySignatureTask.flatMap { it.fileToVerify })
into(binariesDir.get().asFile.absolutePath)
Expand Down

0 comments on commit 1f017f9

Please sign in to comment.