Modify warning message to be more clear [GH-1027]
This commit is contained in:
parent
45c4248d09
commit
141dccd4e7
17
bin/vagrant
17
bin/vagrant
|
@ -36,13 +36,16 @@ begin
|
||||||
env = Vagrant::Environment.new(opts)
|
env = Vagrant::Environment.new(opts)
|
||||||
|
|
||||||
# XXX: This is temporary and should be removed prior to release.
|
# XXX: This is temporary and should be removed prior to release.
|
||||||
env.ui.warn("You're using a development version of Vagrant. Once you begin\n" +
|
env.ui.warn("You're using a development version of Vagrant. This version\n" +
|
||||||
"using this release, you will _not_ be able to downgrade back\n" +
|
"makes structural changes to the `~/vagrant.d` folder such that\n" +
|
||||||
"to 1.0.x. Note that this only affects your computer. Other users\n" +
|
"you will be _unable_ to downgrade back to a 1.0.x release. This\n" +
|
||||||
"of Vagrantfiles you create can continue to use 1.0.x without issue.\n" +
|
"affects all Vagrant environments on your computer. Other users\n" +
|
||||||
"\n" +
|
"of Vagrantfiles you create and use can continue to use 1.0.x without\n" +
|
||||||
"This message will be removed when this version is officially released.",
|
"issue so long as it is on a computer that has never run this\n" +
|
||||||
:prefix => false)
|
"development version.\n" +
|
||||||
|
"\n" +
|
||||||
|
"This message will be removed when this version is officially released.",
|
||||||
|
:prefix => false)
|
||||||
result = nil
|
result = nil
|
||||||
begin
|
begin
|
||||||
result = env.ui.ask("If you're sure you'd like to continue, type 'Y' and then enter: ")
|
result = env.ui.ask("If you're sure you'd like to continue, type 'Y' and then enter: ")
|
||||||
|
|
Loading…
Reference in New Issue