Skip to content

Commit a9b2491

Browse files
committed
Removes make prefix from targets
1 parent b6091a0 commit a9b2491

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dist:
2121
python3 setup.py sdist bdist_wheel
2222
rm -rf build
2323

24-
make testpypi:
24+
testpypi:
2525
@read -p "Publish to testpypi? " -n 1 -r; \
2626
if [[ $$REPLY =~ ^[Nn] ]]; \
2727
then \
@@ -30,7 +30,7 @@ make testpypi:
3030
make docs dist
3131
python -m twine upload --repository testpypi dist/*
3232

33-
make pypi:
33+
pypi:
3434
@read -p "Publish to pypi? " -n 1 -r; \
3535
if [[ $$REPLY =~ ^[Nn] ]]; \
3636
then \

0 commit comments

Comments
 (0)