Skip to content
Snippets Groups Projects
Commit beab86c9 authored by Nicolas KAROLAK's avatar Nicolas KAROLAK
Browse files

fix(test): tast_backup follow symlink

parent bdd9605e
No related branches found
No related tags found
No related merge requests found
......@@ -162,7 +162,7 @@ def check_local_backups(paths: str) -> bool:
all_ok = True
folders = paths.split(",")
for folder in folders:
cmd = "find {} -maxdepth 4 -name backup.marker".format(folder)
cmd = "find -L {} -maxdepth 4 -name backup.marker".format(folder)
_, out = subprocess.getstatusoutput(cmd)
for backup_folder in out.split("\n"):
all_ok = min(check_local_backup(backup_folder), all_ok)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment