From 2e7c8ab76aafdf3e35073e46664fb86c88ff40a7 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Thu, 27 Jul 2017 11:54:14 -0400 Subject: [PATCH] update commands.go to use StateMeta --- commands.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/commands.go b/commands.go index 85f1794b9..910245a68 100644 --- a/commands.go +++ b/commands.go @@ -276,13 +276,17 @@ func init() { "state rm": func() (cli.Command, error) { return &command.StateRmCommand{ - Meta: meta, + StateMeta: command.StateMeta{ + Meta: meta, + }, }, nil }, "state mv": func() (cli.Command, error) { return &command.StateMvCommand{ - Meta: meta, + StateMeta: command.StateMeta{ + Meta: meta, + }, }, nil },