diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-03-15 00:17:58 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-03-15 00:17:58 -0400 |
commit | a8836a1894eb9ec375f99e14e2625bc31ca51616 (patch) | |
tree | 64914ed4af448c3894df3b8b848aafec75d7f169 /makefile | |
parent | e5ad235956c87f07b056af1ac7218fa980921144 (diff) | |
download | markdown-a8836a1894eb9ec375f99e14e2625bc31ca51616.tar.gz markdown-a8836a1894eb9ec375f99e14e2625bc31ca51616.tar.bz2 markdown-a8836a1894eb9ec375f99e14e2625bc31ca51616.zip |
Fixed a few minor issues with the makefile discovered deploying the last release.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -3,9 +3,9 @@ install: python setup.py install -deploy: build +deploy: python setup.py register - python setup.py upload + python setup.py sdist --formats zip,gztar upload build: python setup.py sdist --formats zip,gztar @@ -14,7 +14,10 @@ build-win: python setup.py bdist_wininst docs: - python setup.py build_docs + python setup.py build_docs --force + cd build/docs + zip -r ../docs.zip . + cd ../../ test: tox @@ -37,4 +40,4 @@ clean: rm -rf build rm -rf dist rm -rf tmp - # git clean -dfx'
\ No newline at end of file + # git clean -dfx' |