Skip to content

Commit

Permalink
zeto: minor Gradle cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Richardson <[email protected]>
  • Loading branch information
awrichar committed Sep 20, 2024
1 parent 41606bb commit ab45951
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions domains/zeto/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ task extractZetoArtifacts(type: Copy, dependsOn: [downloadZetoProver, downloadZe
into zkpOut
}

task copySolidity(type: Copy, dependsOn: [":solidity:compile"]) {
inputs.files(fileTree("${rootDir}/solidity/artifacts"))
from fileTree("${rootDir}/solidity/artifacts") {
task copySolidity(type: Copy, dependsOn: extractZetoArtifacts) {
inputs.files(configurations.contractCompile)
from fileTree(configurations.contractCompile.asPath) {
include 'contracts/domains/zeto/ZetoFactory.sol/ZetoFactory.json'
}
into 'internal/zeto/abis'
Expand Down

0 comments on commit ab45951

Please sign in to comment.