bin/autoproj in autoproj-2.2.2 vs bin/autoproj in autoproj-2.3.0
- old
+ new
@@ -6,7 +6,11 @@
argv = ARGV.find_all { |arg| arg != "--no-plugins" }
if argv.size == ARGV.size
Autoproj::CLI.load_plugins
end
-Autoproj::CLI::Main.start(argv)
+begin
+ Autoproj::CLI::Main.start(argv)
+rescue Interrupt
+ # Already notified in the reporting infrastructure
+end