packer: Remove extra newline on version

This commit is contained in:
Mitchell Hashimoto 2013-06-02 11:52:49 -07:00
parent aa1304f860
commit fcd866731b
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ command-line flags for this command.`
}
func (versionCommand) Run(env Environment, args []string) int {
env.Ui().Say(fmt.Sprintf("Packer v%v\n", Version))
env.Ui().Say(fmt.Sprintf("Packer v%v", Version))
return 0
}