aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xscripts/apply-translations.sh2
-rwxr-xr-xscripts/assert-todos.sh2
-rwxr-xr-xscripts/extract-translations.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/apply-translations.sh b/scripts/apply-translations.sh
index 8c9a6f5..291de76 100755
--- a/scripts/apply-translations.sh
+++ b/scripts/apply-translations.sh
@@ -3,7 +3,7 @@ set -Eeuo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")"
cd ../
-for f in $(git ls-files | grep -E '.(md|slides)$' | grep -v '^vendor/reveal.js$' | grep -v '^templates/'); do
+for f in $(git ls-files | grep -E '.(md|slides)$' | grep -v '^vendor/reveal.js$'); do
l="$(grep '^lang: ..$' "$f" | awk '{print $2}')"
if [[ "$l" != 'en' ]]; then
ref="$(grep '^ref: ' "$f" | awk '{print $2}')"
diff --git a/scripts/assert-todos.sh b/scripts/assert-todos.sh
index d33b263..14a1b71 100755
--- a/scripts/assert-todos.sh
+++ b/scripts/assert-todos.sh
@@ -5,7 +5,7 @@ cd ../
# shellcheck disable=2046
if grep -R FIXME $(git ls-files) | \
- grep -Ev '^(vendor/|.git/|scripts/assert-todos.sh|templates|locale/)'; then
+ grep -Ev '^(vendor/|.git/|scripts/assert-todos.sh|locale/)'; then
echo "Found dangling FIXME markers on the project."
echo "You should write them down properly on TODOs.org."
exit 1
diff --git a/scripts/extract-translations.sh b/scripts/extract-translations.sh
index 79ace6b..13fc160 100755
--- a/scripts/extract-translations.sh
+++ b/scripts/extract-translations.sh
@@ -5,7 +5,7 @@ cd ../
TRANSLATIONS=(pt fr eo)
-for f in $(git ls-files | grep -E '.(md|slides)$' | grep -v '^vendor/reveal.js$' | grep -v '^templates/'); do
+for f in $(git ls-files | grep -E '.(md|slides)$' | grep -v '^vendor/reveal.js$'); do
file_lang="$(grep '^lang: ..$' "$f" | awk '{print $2}')"
if [[ "$file_lang" = 'en' ]]; then
for l in "${TRANSLATIONS[@]}"; do