@@ -21,7 +21,7 @@ def __init__(self):
21
21
run_vcpkg_install_command ()
22
22
23
23
def build (self , project_name ):
24
- inst_cmd = f"vcpkg install { project_name } " .split (" " )
24
+ inst_cmd = f"./ vcpkg install { project_name } " .split (" " )
25
25
inst_run = subprocess .run (
26
26
inst_cmd , cwd = VCPKG_LOCATION , capture_output = True , check = False , encoding = "utf-8"
27
27
)
@@ -58,15 +58,15 @@ def run_vcpkg_install_command():
58
58
print (install_run .stdout )
59
59
logger .debug (f"'bootstrap-vcpkg.sh: { install_run .stdout } " )
60
60
61
- int_command = "vcpkg integrate install" .split (" " )
61
+ int_command = "./ vcpkg integrate install" .split (" " )
62
62
int_run = subprocess .run (int_command , cwd = VCPKG_LOCATION , capture_output = True , encoding = "utf-8" )
63
63
if DEBUG_MODE :
64
64
print (int_run .stdout )
65
65
logger .debug (f"'vcpkg integrate install: { int_run .stdout } " )
66
66
67
67
68
68
def remove_vcpkg_project (project_name ):
69
- rem_cmd = ["vcpkg" , "remove" , "--recurse" , project_name ]
69
+ rem_cmd = ["./ vcpkg" , "remove" , "--recurse" , project_name ]
70
70
rem_run = subprocess .run (
71
71
rem_cmd , cwd = VCPKG_LOCATION , capture_output = True , check = False , encoding = "utf-8"
72
72
)
@@ -84,7 +84,7 @@ def get_vcpkg_projects():
84
84
85
85
86
86
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 ]
88
88
inst_run = subprocess .run (
89
89
inst_cmd , cwd = VCPKG_LOCATION , capture_output = True , check = False , encoding = "utf-8"
90
90
)
0 commit comments