Introduction
Introduction Statistics Contact Development Disclaimer Help
Fix return status when all title slides already exist - bitreich-tv - Meme TV e…
git clone git://bitreich.org/bitreich-tv git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfr…
Log
Files
Refs
Tags
LICENSE
---
commit 3f7b865c858b443df5811ff03cdde199c4770903
parent 5e3d88ac8c943a0a3a4e6e814a83520527461126
Author: Anders Damsgaard <[email protected]>
Date: Mon, 17 Aug 2020 00:13:34 +0200
Fix return status when all title slides already exist
Diffstat:
M bin/brtv-generate-title-slides.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/bin/brtv-generate-title-slides.sh b/bin/brtv-generate-title-slides…
@@ -48,5 +48,7 @@ mkdir -p "$title"
# (if title slide doesn't already exist)
while read -r tag url; do
out="${title}/${tag#\#}.${video_ext}"
- [ ! -f "$out" ] && title_slide "$tag" "$out"
+ if [ ! -f "$out" ]; then
+ title_slide "$tag" "$out"
+ fi
done
You are viewing proxied material from bitreich.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.