From 6680d57b10f2f26ff30f93a8092eba27e13861db Mon Sep 17 00:00:00 2001 From: ArtDev <45949002+artdeell@users.noreply.github.com> Date: Sat, 17 Jul 2021 13:34:50 +0300 Subject: [PATCH] Fix build script to remove only non-.so files from gl4es folder --- .github/workflows/android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 3e9cbd8ef..c598c22ec 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -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