28 lines
629 B
Bash
28 lines
629 B
Bash
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
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
|