Merge pull request #2752 from sferik/patch-1

core: replace `exit 1` with `abort`
This commit is contained in:
Mitchell Hashimoto 2014-01-03 08:33:05 -08:00
commit 0ee22aa6d1
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
# Trap interrupts to quit cleanly. This will be overriden 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") { exit 1 }
Signal.trap("INT") { abort }
# Split arguments by "--" if its there, we'll recombine them later
argv = ARGV.dup