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:
parent
6db2c4fd3e
commit
afb8c3532d
1 changed files with 14 additions and 0 deletions
14
fix_news_translations.sh
Executable file
14
fix_news_translations.sh
Executable 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
|
Loading…
Add table
Reference in a new issue