bin/vagrant in vagrant-unbundled-2.0.4.0 vs bin/vagrant in vagrant-unbundled-2.1.1.0

- old
+ new

@@ -3,9 +3,14 @@ # Trap interrupts to quit cleanly. This will be overridden at some point # by Vagrant. This is made to catch any interrupts while Vagrant is # initializing which have historically resulted in stack traces. Signal.trap("INT") { abort } +# Disable exception reporting by default if available +if Thread.respond_to?(:report_on_exception=) + Thread.report_on_exception = false +end + # Split arguments by "--" if its there, we'll recombine them later argv = ARGV.dup argv_extra = [] # These will be the options that are passed to initialize the Vagrant