Open
Description
Is your feature request related to a problem? Please describe.
The workflow is like this
- Download a manifest file containing file URL and checksum
- Download the file
- Verify the file with the manifest's checksum
Describe the solution you'd like
Because checksum
is a plain string I need to assign a value when the task is configured.
But the manifest's checksum is only available after the download of the manifest file.
Describe alternatives you've considered
Seems to work, but not very nice:
checksum("dummy")
doFirst {
checksum(checksumFromManifest)
}
Activity