Skip to content

Commit a530302

Browse files
author
AndyEveritt
committed
update makefile
1 parent 005c948 commit a530302

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

Makefile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ verbosity=1
88
# `bumpversion --tag release
99

1010
update_dist:
11+
rm dist/*
1112
python setup.py sdist bdist_wheel
1213

1314
check_dist:
14-
twine check dist/*-$(v)*
15+
twine check dist/*
1516

16-
upload_test:
17-
twine upload --repository testpypi dist/*-$(v)*
17+
upload_test: check_dist
18+
twine upload --repository testpypi dist/*
1819

19-
upload:
20-
twine upload dist/*-$(v)*
20+
upload: check_dist
21+
twine upload dist/*

0 commit comments

Comments
 (0)