Skip to content

Commit b62a259

Browse files
committed
Improve message when no proto files are found
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent b39655d commit b62a259

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/frequenz/repo/config/setuptools/grpc_tools.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ def run(self) -> None:
7676
]
7777

7878
if not proto_files:
79-
print(f"No proto files found in {self.proto_path}/**/{self.proto_glob}/")
79+
print(
80+
f"No proto files found in {self.proto_path}/**/{self.proto_glob}/, "
81+
"skipping compilation of proto files."
82+
)
8083
return
8184

8285
protoc_cmd = (

0 commit comments

Comments
 (0)