Dieser Commit ist enthalten in:
Peter 2022-02-10 22:52:59 +01:00
Ursprung 923844e525
Commit 54d5dbb939
Es konnte kein GPG-SchlĂĽssel zu dieser Signatur gefunden werden
GPG-SchlĂĽssel-ID: A40EE5665510C9D5
2 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -276,8 +276,8 @@ plugins:
'firststeps-rspamd_ui.md': 'post_installation/firststeps-rspamd_ui.en.md'
'firststeps-snat.md': 'post_installation/firststeps-snat.en.md'
'firststeps-sync_jobs_migration.md': 'post_installation/firststeps-sync_jobs_migration.en.md'
'models/model-acl.md': 'models/model-acl.en.md'
'models/model-passwd.md': 'models/model-passwd.en.md'
'model-acl.md': 'models/model-acl.en.md'
'model-passwd.md': 'models/model-passwd.en.md'
'model-sender_rcv.md': 'models/model-sender_rcv.en.md'
'debug.md': 'troubleshooting/debug.en.md'
'debug-admin_login_sogo.md': 'troubleshooting/debug-admin_login_sogo.en.md'

Datei anzeigen

@ -1,5 +1,5 @@
#/bin/bash
find ./site/ -maxdepth 2 -mindepth 2 -type f -name 'index.html' -not -path './site/de/*' -not -path './site/en/*' | while read f; do
echo "Fixing redirect ''$f' ..."
find ./site/ -maxdepth 3 -mindepth 2 -type f -name 'index.html' -not -path './site/de/*' -not -path './site/en/*' | while read f; do
echo "Fixing redirect ''$f'..."
sed -i -E 's/\.en\/"/\/"/' $f
done