Skip to content

Commit 6538007

Browse files
committed
fixed dist_docs target
1 parent ba9385b commit 6538007

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pavement.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,7 @@ def dist_docs():
114114
dist_dir.exists() or dist_dir.makedirs()
115115
docs_package.exists() and docs_package.remove()
116116

117-
sh(r'cd docs && find . -type f \! \( -path "*/.svn*" -o -name "*~" \) | sort'
118-
' | zip -qr -@ %s' % (docs_package,))
117+
sh(r'cd build/apidocs && zip -qr9 %s .' % (docs_package,))
119118

120119
print
121120
print "Upload @ http://pypi.python.org/pypi?:action=pkg_edit&name=%s" % ( options.setup.name,)

0 commit comments

Comments
 (0)