mirror of
https://github.com/status-im/consul.git
synced 2025-01-24 20:51:10 +00:00
Add script (REMOVE LATER)
' Signed-off-by: Mark Anderson <manderson@hashicorp.com>
This commit is contained in:
parent
05eded4f1d
commit
8ddf7cc1bd
24
fixup_acl_move.sh
Normal file
24
fixup_acl_move.sh
Normal 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user