Merge pull request #2147 from grepory/version_number_fix

core: remove 'v' prefix on version number in vagrant -v
This commit is contained in:
Mitchell Hashimoto 2013-09-06 11:25:45 -07:00
commit 322fd085dd
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ end
# Fast path the version of Vagrant # Fast path the version of Vagrant
if ARGV.include?("-v") || ARGV.include?("--version") if ARGV.include?("-v") || ARGV.include?("--version")
puts "Vagrant v#{Vagrant::VERSION}" puts "Vagrant #{Vagrant::VERSION}"
exit 0 exit 0
end end