Skip to content

Commit 8cbef06

Browse files
committed
fix makefile twine
1 parent b263176 commit 8cbef06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ pypi:
1212
python3 -m twine upload --repository testpypi dist/*
1313
python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps keyctl
1414

15-
pypi-real: clean init test build
16-
@read -r -p "Are you sure? " INPUT; \
15+
pypi-real:
16+
@read -r -p "Are you sure to upload to real pypi? " INPUT; \
1717
if [ "$$INPUT" != "y" ] ; then exit 1 ; fi
18-
twine upload dist/*
18+
python3 -m twine upload dist/*
1919

2020
clean:
2121
pip freeze | xargs pip uninstall keyctl -y

0 commit comments

Comments
 (0)