We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b263176 commit 8cbef06Copy full SHA for 8cbef06
Makefile
@@ -12,10 +12,10 @@ pypi:
12
python3 -m twine upload --repository testpypi dist/*
13
python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps keyctl
14
15
-pypi-real: clean init test build
16
- @read -r -p "Are you sure? " INPUT; \
+pypi-real:
+ @read -r -p "Are you sure to upload to real pypi? " INPUT; \
17
if [ "$$INPUT" != "y" ] ; then exit 1 ; fi
18
- twine upload dist/*
+ python3 -m twine upload dist/*
19
20
clean:
21
pip freeze | xargs pip uninstall keyctl -y
0 commit comments