From 6f6ffbf6f3d336b6f016822c2c0cce5599c8251d Mon Sep 17 00:00:00 2001 From: Amaury Chamayou Date: Fri, 11 Aug 2023 11:15:48 +0100 Subject: [PATCH] Clean up venv after build (#5535) --- src/apps/external_executor/protobuf/build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/apps/external_executor/protobuf/build.sh b/src/apps/external_executor/protobuf/build.sh index 548a1c766f66..3182f77be755 100755 --- a/src/apps/external_executor/protobuf/build.sh +++ b/src/apps/external_executor/protobuf/build.sh @@ -27,4 +27,7 @@ python -m grpc_tools.protoc \ -I "${THIS_DIR}" \ --python_out "${GENERATED_DIR}" \ --grpc_python_out "${GENERATED_DIR}" \ - "${SOURCE_FILE}" \ No newline at end of file + "${SOURCE_FILE}" + +# Clean up venv +rm -rf env \ No newline at end of file