]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
GHA/non-native: fix size/file listing for Android shared lib
authorViktor Szakats <commit@vsz.me>
Mon, 19 Jan 2026 15:23:03 +0000 (16:23 +0100)
committerViktor Szakats <commit@vsz.me>
Mon, 19 Jan 2026 15:26:43 +0000 (16:26 +0100)
Follow-up to 4cf43508e8e60d0d8acef1beecb0f76040609543 #20355

.github/workflows/non-native.yml

index 5ac2c863ab881c10fc5e0348585c126198d3e8b7..c9c1240119a057554ff1c6b902b4560949b20470 100644 (file)
@@ -309,8 +309,8 @@ jobs:
 
       - name: 'curl info'
         run: |
-          find . -type f \( -name curl -o -name '*.so.*' -o -name '*.a' \) -print0 | xargs -0 file --
-          find . -type f \( -name curl -o -name '*.so.*' -o -name '*.a' \) -print0 | xargs -0 stat -c '%10s bytes: %n' --
+          find . -type f \( -name curl -o -name '*.so' -o -name '*.a' \) -print0 | xargs -0 file --
+          find . -type f \( -name curl -o -name '*.so' -o -name '*.a' \) -print0 | xargs -0 stat -c '%10s bytes: %n' --
 
       - name: 'build tests'
         run: |