command: use reset instead of reset_bold

Fixes #10337

The `reset_bold` escape code (21) causes the text on Windows command
prompts to just become invisible. `reset` does the same job for us in
this scenario so do that.
This commit is contained in:
Mitchell Hashimoto 2016-11-29 09:52:58 -08:00
parent f25592a3ef
commit ab1e512ae2
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 4 additions and 4 deletions

View File

@ -129,7 +129,7 @@ func (h *UiHook) PreApply(
}
h.ui.Output(h.Colorize.Color(fmt.Sprintf(
"[reset][bold]%s: %s[reset_bold]%s",
"[reset][bold]%s: %s[reset]%s",
id,
operation,
attrString)))
@ -165,7 +165,7 @@ func (h *UiHook) stillApplying(id string) {
}
h.ui.Output(h.Colorize.Color(fmt.Sprintf(
"[reset][bold]%s: %s (%s elapsed)[reset_bold]",
"[reset][bold]%s: %s (%s elapsed)[reset]",
id,
msg,
time.Now().Round(time.Second).Sub(state.Start),
@ -204,7 +204,7 @@ func (h *UiHook) PostApply(
}
h.ui.Output(h.Colorize.Color(fmt.Sprintf(
"[reset][bold]%s: %s[reset_bold]",
"[reset][bold]%s: %s[reset]",
id, msg)))
return terraform.HookActionContinue, nil
@ -221,7 +221,7 @@ func (h *UiHook) PreProvision(
provId string) (terraform.HookAction, error) {
id := n.HumanId()
h.ui.Output(h.Colorize.Color(fmt.Sprintf(
"[reset][bold]%s: Provisioning with '%s'...[reset_bold]",
"[reset][bold]%s: Provisioning with '%s'...[reset]",
id, provId)))
return terraform.HookActionContinue, nil
}