fix missing spaces on if condition

This commit is contained in:
alemuntoni 2020-11-18 12:10:27 +01:00
parent d0bee9281d
commit 6c5ef75a5c

View File

@ -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::""