Skip to content

Commit

Permalink
Dont build docs when freezing
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Jun 12, 2018
1 parent 105959d commit d79e943
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,8 @@ def main():
)
elif args.action == 'linux-package':
build(args, native_optimizations=False)
run_tool(['make', 'docs'])
if not args.for_freeze:
run_tool(['make', 'docs'])
package(args)
elif args.action == 'osx-bundle':
build(args, native_optimizations=False)
Expand Down

0 comments on commit d79e943

Please sign in to comment.