From fa27e0c175f78dec5802f5547ee2ee63352ccf36 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 16 Mar 2021 10:16:09 +0100 Subject: [PATCH] ci: Conan config fixed again --- .github/workflows/ci-conan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index efc43c36..23b3189e 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -117,7 +117,7 @@ jobs: shell: bash run: | conan config init - if [ ${{ matrix.config.compiler.type }} == 'GCC' || ${{ matrix.config.compiler.type }} == 'CLANG' ]; then + if [[ "${{ matrix.config.compiler.type }}" == "GCC" || "${{ matrix.config.compiler.type }}" == "CLANG" ]]; then conan profile update settings.compiler.libcxx=${{ matrix.config.lib }} default fi conan profile show default