From b2c4e8b2fefd166899c8b1c1792dc2857c14fcaf Mon Sep 17 00:00:00 2001 From: "Chris S. Kim" Date: Fri, 27 May 2022 11:39:58 -0400 Subject: [PATCH] Add build tag for oss (#13279) --- command/registry_oss.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/command/registry_oss.go b/command/registry_oss.go index e7b9b84989..cd5d2ee2e6 100644 --- a/command/registry_oss.go +++ b/command/registry_oss.go @@ -1,8 +1,12 @@ +//go:build !consulent +// +build !consulent + package command import ( - "github.com/hashicorp/consul/command/cli" mcli "github.com/mitchellh/cli" + + "github.com/hashicorp/consul/command/cli" ) func registerEnterpriseCommands(_ cli.Ui, _ map[string]mcli.CommandFactory) {}