Skip to content

Commit c526ffa

Browse files
authored
Merge pull request codecov#236 from codecov/fix-makefile
Update makefile so deploy works
2 parents 3a7a9bf + c8622a4 commit c526ffa

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
deploy:
2-
git tag -a v$(shell python -c "import codecov;print codecov.version;") -m ""
3-
git push origin v$(shell python -c "import codecov;print codecov.version;")
4-
python setup.py sdist bdist_wheel upload
2+
git tag -a v$(python -c 'import codecov;print(codecov.version)') -m ""
3+
git push origin v$(python -c 'import codecov;print(codecov.version)')
4+
python setup.py sdist bdist_wheel
5+
python -m twine upload dist/*
56

67
reinstall:
78
pip uninstall -y codecov

0 commit comments

Comments
 (0)