From afb8c3532db27bb1952babd14765e3ed48937a15 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sun, 29 Jan 2023 23:42:50 +0100 Subject: [PATCH] Script to fix missing _index files for news translations These files are required to properly display images for news Signed-off-by: Alexander Borsuk --- fix_news_translations.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 fix_news_translations.sh diff --git a/fix_news_translations.sh b/fix_news_translations.sh new file mode 100755 index 00000000..a1b6f5d3 --- /dev/null +++ b/fix_news_translations.sh @@ -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