From e7beb04c3ef39156dae4f95bdfa8a7422eb5dca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Sun, 4 May 2014 11:33:30 +0300 Subject: [PATCH] do not overflow exit code see discussion here https://github.com/mitchellh/vagrant/commit/ccc45ebd7a83ce35c248ecc53b3e1c1d6cf9181d --- bin/vagrant | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/vagrant b/bin/vagrant index 0e306d2a7..4210c06c2 100755 --- a/bin/vagrant +++ b/bin/vagrant @@ -194,5 +194,5 @@ rescue Exception => e end exit e.status_code if e.respond_to?(:status_code) - exit 999 # An error occurred with no status code defined + exit 255 # An error occurred with no status code defined end