Commit 334fd4e1 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

packer/rpc: Register []interface{} so arrays can be sent over wire

parent 8055e396
......@@ -4,5 +4,6 @@ import "encoding/gob"
func init() {
gob.Register(new(map[string]interface{}))
gob.Register(make([]interface{}, 0))
gob.Register(new(BasicError))
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment