Skip to content

Commit

Permalink
fix PyPI capitalization [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
AdeelH committed Oct 2, 2023
1 parent 6f63df0 commit ef8e92d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/pypi_publish
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ fi
if [[ "$1" == "-y" ]]; then
response="y"
else
read -r -p "Actually publish to PyPi? (y/N): " response
read -r -p "Actually publish to PyPI? (y/N): " response
fi

case "$response" in
[yY][eE][sS]|[yY])
echo "Publishing to PyPi..."
echo "Publishing to PyPI..."
publish_all
;;
*)
Expand Down

0 comments on commit ef8e92d

Please sign in to comment.