kratos-layout icon indicating copy to clipboard operation
kratos-layout copied to clipboard

The Git_Bash in the Makefile is necessary to optimize

Open yrcs opened this issue 2 years ago • 0 comments

The current Git_Bash does not support paths with spaces and does not support the "\" path for Linux Shell. It is also not easy to use. So whether Windows or Linux, the best solution is just to replace find with /usr/bin/find. As follows shown:

INTERNAL_PROTO_FILES=$(shell /usr/bin/find -c "find internal -name *.proto")
API_PROTO_FILES=$(shell /usr/bin/find -c "find api -name *.proto")

yrcs avatar Sep 24 '22 02:09 yrcs