Skip to content

Commit 93451fb

Browse files
committed
Fix test
1 parent f724161 commit 93451fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

toltec/builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,8 @@ def _build(self, recipe: Recipe, src_dir: str) -> None:
412412
"python3 -u <<EOF",
413413
"import os",
414414
getsource(util.list_tree),
415-
f'for file_path in util.list_tree("{mount_src}")',
416-
f" os.utime(file_path, ns=({epoch}, {epoch})",
415+
f'for file_path in list_tree("{mount_src}"):',
416+
f" os.utime(file_path, ns=({epoch}, {epoch}))",
417417
"EOF",
418418
]
419419

0 commit comments

Comments
 (0)