quote values
This commit is contained in:
parent
c7e42dc9c0
commit
7c34548921
@ -147,8 +147,8 @@ func (c *Config) help() {
|
||||
for k, v := range c.env {
|
||||
if v.dtype != TypeNone {
|
||||
if v.hasdef {
|
||||
format := fmt.Sprintf("Variable %%-%ds| Type %%-%ds| Default %%s\n", max[0]+3, max[1]+3)
|
||||
fmt.Printf(format, k, v.dtype, v.defval)
|
||||
format := fmt.Sprintf("Variable %%-%ds| Type %%-%ds| Default %%s\n", max[0]+5, max[1]+3)
|
||||
fmt.Printf(format, strings.Sprintf(`"%s"`, k), v.dtype, strings.Sprintf(`"%s"`, v.defval))
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -158,8 +158,8 @@ func (c *Config) help() {
|
||||
for k, v := range c.env {
|
||||
if v.dtype != TypeNone {
|
||||
if !v.hasdef {
|
||||
format := fmt.Sprintf("Variable %%-%ds| Type %%-%ds| Required\n", max[0]+3, max[1]+3)
|
||||
fmt.Printf(format, k, v.dtype)
|
||||
format := fmt.Sprintf("Variable %%-%ds| Type %%-%ds| Required\n", max[0]+5, max[1]+3)
|
||||
fmt.Printf(format, strings.Sprintf(`"%s"`, k), v.dtype)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user