From 083db74fb1e5e4d9441c014beda42eba84e0318e Mon Sep 17 00:00:00 2001 From: priya-kinthali Date: Fri, 10 Jul 2026 18:02:58 +0530 Subject: [PATCH] Fix typo in comments for executable suffix removal in test-pypy.yml --- .github/workflows/test-pypy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-pypy.yml b/.github/workflows/test-pypy.yml index a859e5ef..a42e0d9f 100644 --- a/.github/workflows/test-pypy.yml +++ b/.github/workflows/test-pypy.yml @@ -236,13 +236,13 @@ jobs: run: | EXECUTABLE="pypy-3.11-v7.3.x" EXECUTABLE=${EXECUTABLE/-/} # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name - EXECUTABLE=${EXECUTABLE%%-*} # remove any -* suffixe + EXECUTABLE=${EXECUTABLE%%-*} # remove any -* suffix ${EXECUTABLE} --version shell: bash - name: Assert expected binaries (or symlinks) are present run: | EXECUTABLE='pypy-3.10-v7.3.x' EXECUTABLE=${EXECUTABLE/pypy-/pypy} # remove the first '-' in "pypy-X.Y" -> "pypyX.Y" to match executable name - EXECUTABLE=${EXECUTABLE%%-*} # remove any -* suffixe + EXECUTABLE=${EXECUTABLE%%-*} # remove any -* suffix ${EXECUTABLE} --version shell: bash