Skip to content

Commit

Permalink
Feat: Vcpkg Clean After Build (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
aryan-rajoria authored Nov 11, 2024
1 parent f09b39c commit 9ac37e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blint_db/handlers/language_handlers/vcpkg_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit 9ac37e5

Please sign in to comment.