kratos-layout
kratos-layout copied to clipboard
The Git_Bash in the Makefile is necessary to optimize
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")