website/fix_news_translations.sh
Alexander Borsuk afb8c3532d 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>
2023-01-31 09:43:00 +02:00

14 lines
434 B
Bash
Executable file

#!/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