Backport of Delete unused files into release/1.17.x (#19410)

backport of commit 4804558b21

Co-authored-by: Chris S. Kim <ckim@hashicorp.com>
pull/19418/head
hc-github-team-consul-core 2023-10-27 10:45:40 -04:00 committed by GitHub
parent fb80da2fc7
commit 116be6db88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 30 deletions

View File

@ -1,3 +0,0 @@
Copyright © 2014-2018 HashiCorp, Inc.
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this project, you can obtain one at http://mozilla.org/MPL/2.0/.

View File

@ -1,27 +0,0 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
GOIMPORTS=~/go/bin/goimports
CHANGED=(EnterpriseMeta PartitionOrDefault IsDefaultPartition NamespaceOrDefault NewEnterpriseMetaWithPartition EqualPartitions)
DIRS=(agent command proto)
for dir in "${DIRS[@]}"
do
echo "CD to $dir"
pushd $dir
for s in "${CHANGED[@]}"
do
REWRITE='structs.'$s' -> acl.'$s
echo "REPL $REWRITE"
gofmt -w -r="$REWRITE" .
done
popd
done
find . -name \*.go | xargs fgrep 'acl.' -l | xargs $GOIMPORTS -local "github.com/hashicorp/consul" -w
make --always-make proto
make go-mod-tidy