Skip to content

Commit fd02aea

Browse files
committed
Fix the wheel path resolvation issue
1 parent d39b9ee commit fd02aea

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44
pip install build==0.9.0
55

66
# build the wheel and install it
7-
WHEEL_NAME=$(python -m build | grep -Po "django_forbid-.*\.whl" | tail -n 1)
8-
pip install dist/$WHEEL_NAME
7+
python -m build && pip install $(ls dist/django_forbid-*.whl)

0 commit comments

Comments
 (0)