Skip to content

Commit

Permalink
Switch to uv. Deleted unwanted directories
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Feb 25, 2025
1 parent 1e401d6 commit a9632c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blint_db/handlers/language_handlers/meson_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def get_project_list(self):


def meson_build(project_name):
setup_command = f"meson setup -Dwraps={project_name}".split(" ")
meson_setup = subprocess.run(setup_command, cwd=os.path.join(WRAPDB_LOCATION, "build", project_name), check=False, env=os.environ.copy(), shell=sys.platform == "win32", encoding="utf-8")
setup_command = f"meson setup build/{project_name} -Dwraps={project_name}".split(" ")
meson_setup = subprocess.run(setup_command, cwd=WRAPDB_LOCATION, check=False, env=os.environ.copy(), shell=sys.platform == "win32", encoding="utf-8")
subprocess_run_debug(meson_setup, project_name)
compile_command = "meson compile".split(" ")
meson_compile = subprocess.run(compile_command, cwd=os.path.join(WRAPDB_LOCATION, "build", project_name), check=False, env=os.environ.copy(), shell=sys.platform == "win32", encoding="utf-8")
Expand Down

0 comments on commit a9632c2

Please sign in to comment.