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 141de87 commit 74f175cCopy full SHA for 74f175c
.github/workflows/gradle.yml
@@ -36,3 +36,5 @@ jobs:
36
- name: Build Gradle
37
run: |
38
./gradlew build -DheaderVersion=$headerVersion
39
+ - name: test
40
+ run: ls -lah /tmp/libclang.so-*
annotation-processor/src/main/java/io/github/digitalsmile/library/LibraryPath.java
@@ -18,7 +18,7 @@ public static String saveAndGetPath(String libraryName) {
18
throw new IOException("Temp file " + path + "does not exists!");
19
}
20
var file = path.toFile();
21
- file.deleteOnExit();
+ //file.deleteOnExit();
22
try (var out = new FileOutputStream(file)) {
23
int count;
24
byte[] buf = new byte[16 * 1024];
0 commit comments