Skip to content

Commit

Permalink
fix semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
yehoshuadimarsky committed Nov 24, 2024
1 parent 32de446 commit 94918c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Verify version matches in code and release
run: |
VER=$(uv run python -c 'import bcpandas; print(bcpandas.__version__)')
if [[ $VER != $RELEASE_VAR ]] then
if [[ $VER != $RELEASE_VAR ]]; then
echo "version does not match released version, needs a bump!" && exit 1
fi
env:
Expand Down

0 comments on commit 94918c3

Please sign in to comment.