Commit 86e6b3c8 authored by Denis Bilenko's avatar Denis Bilenko

make_dist.py: only show diff in non-fast mode

parent f55d7768
......@@ -101,7 +101,10 @@ def main():
os.rmdir(root)
system(set_version_command)
system('hg diff', noisy=False)
if options.revert or not options.fast:
system('hg diff', noisy=False)
else:
system('hg status', noisy=False)
system('python setup.py -q sdist')
dist_filename = glob.glob('dist/gevent-*.tar.gz')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment