Skip to content

Commit 32491bc

Browse files
committed
call find_file_recursive() without ext
1 parent e018d03 commit 32491bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitsandbytes/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def generate_bug_report_information():
6060
try:
6161
if isdir(path):
6262
print_header(f"{path} CUDA PATHS")
63-
paths = find_file_recursive(path, '*cuda*so')
63+
paths = find_file_recursive(path, '*cuda*')
6464
print(paths)
6565
except:
6666
print(f'Could not read LD_LIBRARY_PATH: {path}')

0 commit comments

Comments
 (0)