Fix build script to remove only non-.so files from gl4es folder

This commit is contained in:
ArtDev 2021-07-17 13:34:50 +03:00 committed by GitHub
parent 3748fea197
commit 6680d57b10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ jobs:
- name: Install gl4es
run: |
cp -R gl4es/libs/* app_pojavlauncher/src/main/jniLibs/
find app_pojavlauncher/src/main/jniLibs/ -type f -o -name "*.so" | xargs rm -f
find app_pojavlauncher/src/main/jniLibs/ -type f -not -name "*.so" | xargs rm -f
- name: Get JRE8
uses: dawidd6/action-download-artifact@v2