Skip to content

Commit

Permalink
Rollup merge of #38299 - achanda:ctrl-c, r=brson
Browse files Browse the repository at this point in the history
Handle Ctrl+C in the build script
  • Loading branch information
frewsxcv authored Dec 12, 2016
2 parents 1702795 + b7cd840 commit 1a2e37c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion x.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@

import bootstrap

bootstrap.main()
try:
bootstrap.main()
except KeyboardInterrupt:
sys.exit()

0 comments on commit 1a2e37c

Please sign in to comment.