Skip to content

Commit

Permalink
Fix dumping of config file
Browse files Browse the repository at this point in the history
  • Loading branch information
achalddave committed Nov 29, 2017
1 parent 2ad1f80 commit c7ee981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ config = normalize_config(config)
do -- Write normalized config to file
local normalized_config_out = io.open(
paths.concat(cache_dir, 'normalized-config.yaml'), 'w')
normalized_config_out:write(lyaml.dump(config))
normalized_config_out:write(lyaml.dump({config}))
normalized_config_out:close()
end

Expand Down

0 comments on commit c7ee981

Please sign in to comment.