From 6c5ef75a5c08531cbfd3521fba4afbc3d331c2cb Mon Sep 17 00:00:00 2001 From: alemuntoni Date: Wed, 18 Nov 2020 12:10:27 +0100 Subject: [PATCH] fix missing spaces on if condition --- .github/workflows/Linux.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Linux.yml b/.github/workflows/Linux.yml index 9b5bb9f35..558d30354 100644 --- a/.github/workflows/Linux.yml +++ b/.github/workflows/Linux.yml @@ -22,9 +22,10 @@ jobs: sudo apt-get install -y mesa-common-dev libglu1-mesa-dev libgmp-dev - name: Setup env variables id: envs + shell: bash run: | echo ::set-output name=date::"$(cat ML_VERSION)" - if ["${{matrix.precision}}" == "double_precision"]; then + if [ "${{matrix.precision}}" == "double_precision" ]; then echo ::set-output name=artifact_suffix::"_double" else echo ::set-output name=artifact_suffix::""