We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c29dd04 commit 70fc0c5Copy full SHA for 70fc0c5
libraries/cardboard/build.gradle
@@ -46,9 +46,12 @@ import static java.nio.file.StandardCopyOption.*;
46
47
task dist {
48
doLast {
49
+ File cardBoardJar = file("library/cardboard.jar");
50
+ //create intermediate folder if they don't exist
51
+ cardBoardJar.mkdirs();
52
// make copy of jar file to library folder
53
Files.copy(file("$buildDir/libs/cardboard.jar").toPath(),
- file("library/cardboard.jar").toPath(), REPLACE_EXISTING);
54
+ cardBoardJar.toPath(), REPLACE_EXISTING);
55
}
56
57
0 commit comments