]> git.plutz.net Git - serve0/commitdiff
include symlinked videos in list
authorPaul Hänsch <paul@plutz.net>
Mon, 12 Jul 2021 15:37:30 +0000 (17:37 +0200)
committerPaul Hänsch <paul@plutz.net>
Mon, 12 Jul 2021 15:37:30 +0000 (17:37 +0200)
indexmeta.sh

index 43e360d2bfcfab9f4cc7ea2016b971f981239227..e37e5da6c3696cffd979639798a785dff84ff69a 100644 (file)
@@ -83,7 +83,7 @@ meta_dir(){
 
   if [ -d "$dir/.index" -a \! -f "$meta" ] && LOCK "$meta"; then
     touch "$meta"  # preliminary touch to prevent concurrent generators
-    find "$dir" -type f -mindepth 1 -maxdepth 1 \
+    find -L "$dir" -type f -mindepth 1 -maxdepth 1 \
     | grep -aE "$file_pattern" \
     | while read -r v; do
       meta_line "$v"
@@ -93,7 +93,7 @@ meta_dir(){
     RELEASE "$meta"
   elif [ -d "$dir/.index" -a "$dir" -nt "$metat" ] && LOCK "$meta"; then
     touch "$meta"
-    find "$dir" -type f -newer "$metat" \
+    find -L "$dir" -type f -newer "$metat" \
          -mindepth 1 -maxdepth 1 \
     | grep -aE "$file_pattern" \
     | while read -r v; do