diff --git a/command/push.go b/command/push.go index e33199d..6db50f6 100644 --- a/command/push.go +++ b/command/push.go @@ -14,11 +14,11 @@ func PushAll(cli *cli.Context) error { return err } - // Vault - if err := vault.PushAllWithConfig(cli, config); err != nil { + // Consul + if err := consul.PushAllWithConfig(cli, config); err !=nil { return err } - // Consul - return consul.PushAllWithConfig(cli, config) + // Vault + return vault.PushAllWithConfig(cli, config) }