From 69c16a29c4fa68457d9f255a17f1298ddbf49acf Mon Sep 17 00:00:00 2001 From: Avasam Date: Thu, 22 Aug 2024 14:44:01 -0400 Subject: [PATCH] Add missing spaces in comparison --- .github/workflows/pyright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pyright.yml b/.github/workflows/pyright.yml index f8b80504f5..71e0fa202a 100644 --- a/.github/workflows/pyright.yml +++ b/.github/workflows/pyright.yml @@ -75,7 +75,7 @@ jobs: echo 'To run this test locally with npm pre-installed, run:' echo '> npx -y pyright@${{ env.PYRIGHT_VERSION }} --threads' echo 'You can also instead install "Pyright for Python" which will install npm for you:' - if ['$PYRIGHT_VERSION' == 'latest']; then + if [ '$PYRIGHT_VERSION' == 'latest' ]; then echo '> pip install -U' else echo '> pip install pyright==${{ env.PYRIGHT_VERSION }}'