Skip to content

Commit

Permalink
Update root.go
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Feb 5, 2022
1 parent 84d2be2 commit e3b9e5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (a *Action) renderOutput() error {
for _, key := range keys {
var outputDefault string
if len(a.Inputs[key].Default) > 0 {
outputDefault = a.Inputs[key].Default
outputDefault = fmt.Sprintf("%#v", a.Inputs[key].Default)

if outputDefault == pipeSeparator {
outputDefault = "\\" + outputDefault
Expand Down

0 comments on commit e3b9e5b

Please sign in to comment.