Skip to content

Commit ad1f8cf

Browse files
committed
fix: fixed that the protoc cant find *.proto files
1 parent 5dd2aae commit ad1f8cf

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

compile.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ def convert_to_proto_path(paths):
2727
return proto_paths
2828

2929

30-
def convert_to_all_proto(paths):
31-
all_protos = []
32-
for path in paths:
33-
all_protos.append(f"{path}/*.proto")
34-
return all_protos
30+
# def convert_to_all_proto(paths):
31+
# all_protos = []
32+
# for path in paths:
33+
# all_protos.append(f"{path}/*.proto")
34+
# return all_protos
3535

3636

3737
proto_relative_folders = find_proto_folders()
3838
for_command = convert_to_proto_path(proto_relative_folders)
39-
for_command2 = convert_to_all_proto(proto_relative_folders)
39+
# for_command2 = convert_to_all_proto(proto_relative_folders)
4040

41-
command = ["protoc"] + for_command + [f"--python_out={PYTHON_OUTPUT_PATH}"] + for_command2
41+
command = ["protoc"] + for_command + [f"--python_out={PYTHON_OUTPUT_PATH}"] + ["$(find xray_api -name '*.proto')"]
4242

4343
try:
4444
subprocess.check_output(command)

0 commit comments

Comments
 (0)