Skip to content

Commit

Permalink
fix syntax in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Jun 14, 2024
1 parent 3daa2d0 commit 41e3126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/psycopg2-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi

PSYCOPG2_NAME=$(pip show --format=json | jq -r '.[] | select(.Name == "psycopg2" or .Name == "psycopg2-binary") | .name')
if [[ "$PSYCOPG2_NAME" != "$PSYCOPG2_EXPECTED_NAME" ]]; then
echo -e "Expected: `$PSYCOPG2_EXPECTED_NAME` but found: `$PSYCOPG2_NAME`"
echo -e 'Expected: "$PSYCOPG2_EXPECTED_NAME" but found: "$PSYCOPG2_NAME"'
exit 1
fi

Expand Down

0 comments on commit 41e3126

Please sign in to comment.