Skip to content

Commit

Permalink
feat: 优化lib压缩包处理
Browse files Browse the repository at this point in the history
  • Loading branch information
zhou-hao committed Jun 12, 2024
1 parent 4453abd commit b968e53
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
path: ~/.m2
key: zlmedia4j-maven-repository
- name: Build with Maven
run: ./mvnw clean test
run: ./mvnw clean test -Plinux-x86_64
Binary file modified zlmedia4j-native/lib/linux/aarch_64.zip
Binary file not shown.
Binary file modified zlmedia4j-native/lib/linux/x86_64.zip
Binary file not shown.
Binary file modified zlmedia4j-native/lib/osx/aarch_64.zip
Binary file not shown.
Binary file modified zlmedia4j-native/lib/osx/x86_64.zip
Binary file not shown.
Binary file modified zlmedia4j-native/lib/windows/x86_64.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ static String install(String file, String target) {
continue;
}
String filename = entry.getName();
if(filename.startsWith(" __MACOSX")||filename.endsWith(".DS_Store")){
continue;
}
if (filename.endsWith("/")) {
continue;
}
Expand Down

0 comments on commit b968e53

Please sign in to comment.