In d68ba3356cd92210724c141baab40ccbea95e822, commands were updated to implement Command by value and not by pointer. A little bit of reflection code remained that still called Elem() in certain situations, which panics (since cmd is not a pointer anymore).
In d68ba3356cd92210724c141baab40ccbea95e822, commands were updated to implement
Command
by value and not by pointer. A little bit of reflection code remained that still calledElem()
in certain situations, which panics (sincecmd
is not a pointer anymore).