CI: fix the if condition to make it work properly

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
This commit is contained in:
Dmitry Baryshkov
2023-11-06 13:25:16 +02:00
parent dd604f9d1f
commit 1a0570550e

View File

@@ -50,7 +50,7 @@ jobs:
apt -y install --no-install-recommends meson build-essential
- name: Install cross-compilers
if:${{ matrix.target }} != 'native'
if: matrix.target != 'native'
run: |
apt -y install gcc-${{ matrix.target }}
FAMILY=$(echo ${{ matrix.target }} | cut -d- -f 1)