From 07b0c226358d44fe3cb9284211ccd97966ef8092 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Thu, 6 Jun 2024 01:04:56 -0400 Subject: [PATCH] syntax --- .github/workflows/integration-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 9fe54169..f26f9f12 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -124,7 +124,7 @@ jobs: PSYCOPG2_NAME="${PSYCOPG2_PIP_ENTRY%% *}" echo $PSYCOPG2_NAME - if [[ "${PSYCOPG2_NAME}" != "${PSYCOPG2_EXPECTED_NAME}" ]]; then + if [[ "$PSYCOPG2_NAME" != "$PSYCOPG2_EXPECTED_NAME" ]]; then exit 1 fi env: @@ -138,7 +138,7 @@ jobs: PSYCOPG2_NAME="${PSYCOPG2_PIP_ENTRY%% *}" echo $PSYCOPG2_NAME - if [[ "${PSYCOPG2_NAME}" != "${PSYCOPG2_EXPECTED_NAME}" ]]; then + if [[ "$PSYCOPG2_NAME" != "$PSYCOPG2_EXPECTED_NAME" ]]; then exit 1 fi env: @@ -153,7 +153,7 @@ jobs: PSYCOPG2_NAME="${PSYCOPG2_PIP_ENTRY%% *}" echo $PSYCOPG2_NAME - if [[ "${PSYCOPG2_NAME}" != "${PSYCOPG2_EXPECTED_NAME}" ]]; then + if [[ "$PSYCOPG2_NAME" != "$PSYCOPG2_EXPECTED_NAME" ]]; then exit 1 fi env: