From d8ef9d77abd91f1a8e17048c37eaf83b814ef90a Mon Sep 17 00:00:00 2001 From: Azathothas Date: Sun, 26 Jan 2025 12:31:38 +0545 Subject: [PATCH] fix --- .github/workflows/manual_test_builds.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/manual_test_builds.yaml b/.github/workflows/manual_test_builds.yaml index f9287b06..d4374eab 100644 --- a/.github/workflows/manual_test_builds.yaml +++ b/.github/workflows/manual_test_builds.yaml @@ -71,14 +71,14 @@ jobs: ##presets set +x ; set +e #-------------# - if [ "${{ matrix.runner }}" == "ubuntu-24.04-arm" ]; then - if [ "${{ github.event.inputs.host }}" != "ALL" ] && \ - [ "${{ github.event.inputs.host }}" != "aarch64-Linux" ]; then + if [[ "${{ matrix.runner }}" == "ubuntu-24.04-arm" ]]; then + if [[ "${{ github.event.inputs.host }}" != "ALL" && \ + "${{ github.event.inputs.host }}" != "aarch64-Linux" ]]; then exit 0 fi - elif [ "${{ matrix.runner }}" == "ubuntu-latest" ]; then - if [ "${{ github.event.inputs.host }}" != "ALL" ] && \ - [ "${{ github.event.inputs.host }}" != "x86_64-Linux" ]; then + elif [[ "${{ matrix.runner }}" == "ubuntu-latest" ]]; then + if [[ "${{ github.event.inputs.host }}" != "ALL" && \ + "${{ github.event.inputs.host }}" != "x86_64-Linux" ]]; then exit 0 fi fi