command/fix: properly replace the escaped </>

pull/919/head
Mitchell Hashimoto 13 years ago
parent 7fc30436d5
commit 3130fb43a7

@ -73,7 +73,10 @@ func (c Command) Run(env packer.Environment, args []string) int {
return 1
}
env.Ui().Say(indented.String())
result := indented.String()
result = strings.Replace(result, `\u003c`, "<", -1)
result = strings.Replace(result, `\u003e`, ">", -1)
env.Ui().Say(result)
return 0
}

Loading…
Cancel
Save