aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-11-03 17:15:53 -0300
committerEuAndreh <eu@euandre.org>2020-11-03 17:26:59 -0300
commitae494bd6ee6eaaa3135cfa9e5b459f86d2ff98aa (patch)
tree98c3d78d0d8308db61a52c361eb2576f822c7e02 /scripts
parentRename: scripts/assert-translations.sh -> scripts/sync-translations.sh (diff)
downloadeuandre.org-ae494bd6ee6eaaa3135cfa9e5b459f86d2ff98aa.tar.gz
euandre.org-ae494bd6ee6eaaa3135cfa9e5b459f86d2ff98aa.tar.xz
sync-translations.sh: Filter out instead of filter in "drafts/"
Diffstat (limited to '')
-rwxr-xr-xscripts/sync-translations.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/sync-translations.sh b/scripts/sync-translations.sh
index e12d968..711480e 100755
--- a/scripts/sync-translations.sh
+++ b/scripts/sync-translations.sh
@@ -5,7 +5,7 @@ cd ../
TRANSLATIONS=(pt fr eo)
-for f in $(find . -type f -name '*.md' | grep -v '^./vendor' | grep -v '^./_site' | grep '^./drafts/'); do
+for f in $(find . -type f -name '*.md' | grep -v '^./vendor' | grep -v '^./_site' | grep -v '^./drafts/'); do
file_lang="$(grep '^lang: ..$' "$f" | awk '{print $2}')"
if [[ "$file_lang" = 'en' ]]; then
for l in "${TRANSLATIONS[@]}"; do
@@ -16,7 +16,7 @@ for f in $(find . -type f -name '*.md' | grep -v '^./vendor' | grep -v '^./_site
fi
done
-for f in $(find . -type f -name '*.md' | grep -v '^./vendor/' | grep -v '^./_site/' | grep './drafts/'); do
+for f in $(find . -type f -name '*.md' | grep -v '^./vendor/' | grep -v '^./_site/' | grep -v './drafts/'); do
l="$(grep '^lang: ..$' "$f" | awk '{print $2}')"
if [[ "$l" != 'en' ]]; then
ref="$(grep '^ref: ' "$f" | awk '{print $2}')"