Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
561 B

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