Permalink
Browse files

Handle Ctrl+C in the build script

  • Loading branch information...
1 parent e0158e0 commit b7cd840dd7b36df7014abe458a6c799266e5bbe3 @achanda achanda committed Dec 11, 2016
Showing with 4 additions and 1 deletion.
  1. +4 −1 x.py
View
@@ -16,4 +16,7 @@
import bootstrap
-bootstrap.main()
+try:
+ bootstrap.main()
+except KeyboardInterrupt:
+ sys.exit()

0 comments on commit b7cd840

Please sign in to comment.