Skip to content

Commit 835fabf

Browse files
committed
Fix a format string.
1 parent 9769df0 commit 835fabf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/root-ci-config/build_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ def remove_file_match_ext(directory: str, extension: str) -> str:
326326
extension (str): The regular expression pattern to match filenames against.
327327
"""
328328
print_fancy(f"Removing gcda files from {directory}")
329-
log.add(f"\nfind {directory} -name \*.gcda -exec rm {{}} \;")
329+
log.add(f"\nfind {directory} -name \\*.gcda -exec rm {{}} \;")
330330
pattern = "." + extension
331331
count = 0
332332
for currentdir, _, files in os.walk(directory):

0 commit comments

Comments
 (0)