summaryrefslogtreecommitdiff
path: root/cmd/commands.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-08-22 13:38:37 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-08-22 13:38:37 -0600
commitaf25f0254e94eb2e2898ba495bfc3de209a49e79 (patch)
tree79f20651d4fcdb27fe5c3299892576d38e82badb /cmd/commands.go
parenta0fd2b6c0abbd9c121ecf779058fd348327b5e0c (diff)
caddyfile: Support global config block; allow non-empty blocks w/ 0 keys
Diffstat (limited to 'cmd/commands.go')
-rw-r--r--cmd/commands.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/commands.go b/cmd/commands.go
index 99ec642..bb5429c 100644
--- a/cmd/commands.go
+++ b/cmd/commands.go
@@ -331,7 +331,7 @@ func cmdAdaptConfig() (int, error) {
fmt.Errorf("reading input file: %v", err)
}
- opts := make(map[string]string)
+ opts := make(map[string]interface{})
if *adaptCmdPrettyFlag {
opts["pretty"] = "true"
}