Add script (REMOVE LATER)

'

Signed-off-by: Mark Anderson <manderson@hashicorp.com>
This commit is contained in:
Mark Anderson 2022-03-25 11:27:28 -07:00
parent 0905c1d83d
commit 5b1e494faf
1 changed files with 24 additions and 0 deletions

24
fixup_acl_move.sh Normal file
View File

@ -0,0 +1,24 @@
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
git diff --name-only | xargs $GOIMPORTS -local "github.com/hashicorp/consul" -w
make --always-make proto