hertz-contrib/registry

[error] etcd makefile can't into the directory

Closed this issue · 2 comments

Describe the bug

Makefile under etcd directory have such code

prepare-cluster:
	cd example
	docker-compose up -d

it should be

prepare-cluster:
        cd example && docker-compose up -d

To Reproduce

Steps to reproduce the behavior:

cd etcd
make

“cd example && docker-compose up -d” This command can indeed better bind these two operations, and this logic will be modified in the new registry repository.

“cd example && docker-compose up -d” This command can indeed better bind these two operations, and this logic will be modified in the new registry repository.

That will be great.