Script to fix missing _index files for news translations

These files are required to properly display images for news

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-01-29 23:42:50 +01:00 committed by Roman Tsisyk
parent 6db2c4fd3e
commit afb8c3532d

14
fix_news_translations.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
# This script creates required _index files to properly process news translations.
# TODO: Automatize it or find a way to avoid required translated _index files.
set -euo pipefail
if [ -z ${1:-} ]; then
find content/news -type f -name 'index.*.md' -exec ./fix_news_translations.sh {} \;
else
PARENT_DIR="$(dirname $1)/.."
LANG_INDEX=$(basename $1)
rsync -a "$PARENT_DIR/_index.md" "$PARENT_DIR/_$LANG_INDEX"
fi