From 3bc9bf61e0555a7a4354ecaa34360d8fb53dee7e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 20 Nov 2020 01:50:13 +0200 Subject: [PATCH] Quote if expressions --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 539c00a..59465fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: - uses: actions/checkout@v2 - name: Setup - if: !startsWith( matrix.os, 'windows-' ) + if: "!startsWith( matrix.os, 'windows-' )" run: | REF=${GITHUB_BASE_REF:-$GITHUB_REF} BOOST_BRANCH=develop && [ "$REF" == "master" ] && BOOST_BRANCH=master || true @@ -64,7 +64,7 @@ jobs: ./b2 -d0 headers - name: Setup (Windows) - if: startsWith( matrix.os, 'windows-' ) + if: "startsWith( matrix.os, 'windows-' )" shell: cmd run: | set BOOST_BRANCH=develop