find: File system loop detected - list debug force true

This commit is contained in:
Matthew Sharp 2020-05-04 16:32:15 -04:00
parent 1996351b0b
commit 1dadb81611
No known key found for this signature in database
GPG Key ID: FA63E06B9575DB9C
1 changed files with 4 additions and 4 deletions

View File

@ -1342,11 +1342,11 @@ public class ContainerLaunch implements Callable<Integer> {
// find will follow symlinks outside the work dir if such sylimks exist
// (like public/app local resources)
line("echo \"find -L . -maxdepth 5 -ls:\" 1>>\"", output.toString(),
"\"");
line("find -L . -maxdepth 5 -ls 1>>\"", output.toString(), "\"");
"\" || :");
line("find -L . -maxdepth 5 -ls 1>>\"", output.toString(), "\" || :");
line("echo \"broken symlinks(find -L . -maxdepth 5 -type l -ls):\" 1>>\"",
output.toString(), "\"");
line("find -L . -maxdepth 5 -type l -ls 1>>\"", output.toString(), "\"");
output.toString(), "\" || :");
line("find -L . -maxdepth 5 -type l -ls 1>>\"", output.toString(), "\" || :");
}
@Override