From 92161ebab9ab5166ac6887edb2f91c8e6b6dd5c0 Mon Sep 17 00:00:00 2001 From: Avasam Date: Thu, 22 Aug 2024 14:15:26 -0400 Subject: [PATCH] missing semi --- .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 95b5021b20..515b9bb393 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 }}'