summaryrefslogtreecommitdiff
path: root/fabfile.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 11:26:50 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 11:26:50 -0700
commit78d2e13e8168f8df644376c5d6637fe24206de80 (patch)
tree6785b4b1632007124f60b6cbdd13cb6e66b48692 /fabfile.py
parentd5d5cbf6124e10acf23894c6c12dc6164402155d (diff)
downloadcmd2-git-78d2e13e8168f8df644376c5d6637fe24206de80.tar.gz
Updated build step in fabfile to include both source and wheel distributions0.8.5
Diffstat (limited to 'fabfile.py')
-rw-r--r--fabfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fabfile.py b/fabfile.py
index cf0151e4..a80d5d50 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -30,7 +30,7 @@ def clean():
@task
def build():
- local("python setup.py sdist")
+ local("python setup.py sdist bdist_wheel")
@task