Skip to content

Commit 14f8982

Browse files
committed
Fix the regex for parsing the WHEEL name
1 parent a96ef32 commit 14f8982

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
pip install build
44

55
# build the wheel and install it
6-
WHEEL_NAME=$(python -m build | grep -Po "fastapi_oauth2-.*\.whl" | tail -n 1)
6+
WHEEL_NAME=$(python -m build | grep -Po "fastapi_oauth2-\S*\.whl" | tail -n 1)
77
pip install dist/$WHEEL_NAME

0 commit comments

Comments
 (0)