From a50539bc7831e7b6beb4d84996aa8eaa7af95681 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 28 Jan 2013 12:44:24 -0800 Subject: [PATCH] Remove the development version warning --- bin/vagrant | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/bin/vagrant b/bin/vagrant index 38aa15150..1373face2 100755 --- a/bin/vagrant +++ b/bin/vagrant @@ -41,28 +41,6 @@ begin logger.debug("Creating Vagrant environment") env = Vagrant::Environment.new(opts) - # XXX: This is temporary and should be removed prior to release. - env.ui.warn("You're using a development version of Vagrant. This version\n" + - "makes structural changes to the `~/.vagrant.d` folder such that\n" + - "you will be _unable_ to downgrade back to a 1.0.x release. This\n" + - "affects all Vagrant environments on your computer. Other users\n" + - "of Vagrantfiles you create and use can continue to use 1.0.x without\n" + - "issue so long as it is on a computer that has never run this\n" + - "development version.\n" + - "\n" + - "This message will be removed when this version is officially released.", - :prefix => false) - result = nil - begin - result = env.ui.ask("If you're sure you'd like to continue, type 'Y' and then enter: ") - rescue Interrupt - result = nil - rescue Vagrant::Errors::UIExpectsTTY - result = nil - end - - exit 0 if !result || result.upcase != "Y" - # Execute the CLI interface, and exit with the proper error code exit(env.cli(ARGV)) rescue Vagrant::Errors::VagrantError => e