diff --git a/blint_db/handlers/language_handlers/vcpkg_handler.py b/blint_db/handlers/language_handlers/vcpkg_handler.py index 47fcea0..9b0e60f 100644 --- a/blint_db/handlers/language_handlers/vcpkg_handler.py +++ b/blint_db/handlers/language_handlers/vcpkg_handler.py @@ -79,7 +79,7 @@ def get_vcpkg_projects(): def vcpkg_build(project_name): - inst_cmd = ["./vcpkg", "install", project_name] + inst_cmd = ["./vcpkg", "install", "--clean-after-build", project_name] inst_run = subprocess.run( inst_cmd, cwd=VCPKG_LOCATION, capture_output=True, check=False )