From a52bd10340970ef22e70f59a2143bf74623e1771 Mon Sep 17 00:00:00 2001 From: epi Date: Fri, 5 Mar 2021 09:34:23 -0600 Subject: [PATCH] added arm specific strip command --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85ded35..67f0ac9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,7 @@ jobs: args: --release --target=${{ matrix.target }} - name: Strip symbols from binary run: | - strip -s ${{ matrix.path }} + strip -s ${{ matrix.path }} || arm-linux-gnueabihf-strip -s ${{ matrix.path }} - name: Build tar.gz for homebrew installs if: matrix.type == 'ubuntu-x64' run: |