Skip to content

Commit d929e5f

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

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

blint_db/handlers/language_handlers/meson_handler.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,11 @@ def find_executables(self, project_name):
4343
file_path = Path(root) / file
4444
if os.access(file_path, os.X_OK):
4545
full_path = file_path
46+
print ("Executing file", full_path)
4647
file_output = subprocess.run(
4748
["file", full_path], capture_output=True, check=False, env=os.environ.copy(), shell=sys.platform == "win32", encoding="utf-8"
4849
)
49-
if b"ELF" in file_output.stdout:
50+
if "ELF" in file_output.stdout:
5051
executable_list.append(full_path)
5152
return executable_list
5253

@@ -83,10 +84,11 @@ def find_meson_executables(project_name):
8384
file_path = Path(root) / file
8485
if os.access(file_path, os.X_OK):
8586
full_path = file_path
87+
print ("Executing file", full_path)
8688
file_output = subprocess.run(
8789
["file", full_path], capture_output=True, check=False, env=os.environ.copy(), shell=sys.platform == "win32", encoding="utf-8"
8890
)
89-
if b"ELF" in file_output.stdout:
91+
if "ELF" in file_output.stdout:
9092
executable_list.append(full_path)
9193
return executable_list
9294

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ authors = [
88
dependencies = [
99
"blint",
1010
"meson>=1.7.0",
11+
"ninja>=1.11.1.3",
1112
"oras>=0.2.25",
1213
]
1314
requires-python = ">=3.10"

uv.lock

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)