Handle Ctrl+C in the build script

This commit is contained in:
Abhishek Chanda 2016-12-11 15:25:31 +00:00
parent e0158e02f9
commit b7cd840dd7

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()