Skip to content

Commit

Permalink
Handle Ctrl+C in the build script
Browse files Browse the repository at this point in the history
  • Loading branch information
achanda committed Dec 11, 2016
1 parent e0158e0 commit b7cd840
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion x.py
Expand Up @@ -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.