Skip to content

Commit

Permalink
Fix call to JarUtils from Gradle project
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarsotovalero committed Dec 1, 2021
1 parent 77df1b1 commit c260b12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ public void decompressDependencies(
final File dependencyDirectory,
final String dependencyDirPath) {
if (dependencyDirectory.exists()) {
JarUtils.decompressJars(dependencyDirPath);
JarUtils.decompress(dependencyDirPath);
} else {
printString("Unable to decompress jars at " + dependencyDirPath);
}
Expand Down

0 comments on commit c260b12

Please sign in to comment.