Skip to content

Commit

Permalink
add debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
acrantel committed Dec 24, 2023
1 parent cf67433 commit ee8cd18
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ task prodClient {
commandLine 'npm', 'run', 'electron-build'
workingDir 'client'
}
fileTree('client/dist').visit { FileVisitDetails fvd ->
if (fvd.directory && fvd.getRelativePath().getSegments().length < 2) {
println fvd
}
}
}
}

Expand Down

0 comments on commit ee8cd18

Please sign in to comment.