Skip to content

Commit ff115fd

Browse files
committed
Switch to uv. Deleted unwanted directories
Signed-off-by: Prabhu Subramanian <[email protected]>
1 parent 929fb87 commit ff115fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

blint_db/handlers/language_handlers/vcpkg_handler.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self):
2121
run_vcpkg_install_command()
2222

2323
def build(self, project_name):
24-
inst_cmd = f"vcpkg install {project_name}".split(" ")
24+
inst_cmd = f"./vcpkg install {project_name}".split(" ")
2525
inst_run = subprocess.run(
2626
inst_cmd, cwd=VCPKG_LOCATION, capture_output=True, check=False, encoding="utf-8"
2727
)
@@ -58,15 +58,15 @@ def run_vcpkg_install_command():
5858
print(install_run.stdout)
5959
logger.debug(f"'bootstrap-vcpkg.sh: {install_run.stdout}")
6060

61-
int_command = "vcpkg integrate install".split(" ")
61+
int_command = "./vcpkg integrate install".split(" ")
6262
int_run = subprocess.run(int_command, cwd=VCPKG_LOCATION, capture_output=True, encoding="utf-8")
6363
if DEBUG_MODE:
6464
print(int_run.stdout)
6565
logger.debug(f"'vcpkg integrate install: {int_run.stdout}")
6666

6767

6868
def remove_vcpkg_project(project_name):
69-
rem_cmd = ["vcpkg", "remove", "--recurse", project_name]
69+
rem_cmd = ["./vcpkg", "remove", "--recurse", project_name]
7070
rem_run = subprocess.run(
7171
rem_cmd, cwd=VCPKG_LOCATION, capture_output=True, check=False, encoding="utf-8"
7272
)
@@ -84,7 +84,7 @@ def get_vcpkg_projects():
8484

8585

8686
def vcpkg_build(project_name):
87-
inst_cmd = ["vcpkg", "install", "--clean-after-build", project_name]
87+
inst_cmd = ["./vcpkg", "install", "--clean-after-build", project_name]
8888
inst_run = subprocess.run(
8989
inst_cmd, cwd=VCPKG_LOCATION, capture_output=True, check=False, encoding="utf-8"
9090
)

0 commit comments

Comments
 (0)