Remove 'v' prefix on version number in vagrant -v

This commit is contained in:
Greg Poirier 2013-09-06 11:14:17 -07:00
parent b5fd021694
commit f65f2d20d9
1 changed files with 1 additions and 1 deletions

View File

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