Rollup merge of #38299 - achanda:ctrl-c, r=brson

Handle Ctrl+C in the build script
This commit is contained in:
Corey Farwell 2016-12-12 14:10:33 -05:00 committed by GitHub
commit cba1304313

5
x.py
View File

@ -16,4 +16,7 @@ sys.path.append(os.path.abspath(os.path.join(dir, "src", "bootstrap")))
import bootstrap
bootstrap.main()
try:
bootstrap.main()
except KeyboardInterrupt:
sys.exit()