Commit 3130fb43 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

command/fix: properly replace the escaped </>

parent 7fc30436
......@@ -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
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment