Rollup merge of #38299 - achanda:ctrl-c, r=brson
Handle Ctrl+C in the build script
This commit is contained in:
commit
cba1304313
1 changed files with 4 additions and 1 deletions
3
x.py
3
x.py
|
@ -16,4 +16,7 @@ sys.path.append(os.path.abspath(os.path.join(dir, "src", "bootstrap")))
|
|||
|
||||
import bootstrap
|
||||
|
||||
try:
|
||||
bootstrap.main()
|
||||
except KeyboardInterrupt:
|
||||
sys.exit()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue