From df0319c4a1ec18ff3012a35ce75123af6e697f9d Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 23 Jan 2021 20:22:18 -0300 Subject: build-aux/apply-translations.sh: Exclude recently added markdown files --- build-aux/apply-translations.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build-aux') diff --git a/build-aux/apply-translations.sh b/build-aux/apply-translations.sh index adc23f0..190b777 100755 --- a/build-aux/apply-translations.sh +++ b/build-aux/apply-translations.sh @@ -1,7 +1,7 @@ #!/bin/sh set -eu -for f in $(git ls-files | grep -E '.(md|slides)$' | grep -v '^vendor/reveal.js$'); do +for f in $(git ls-files | grep -E '.(md|slides)$' | grep -Ev '^(vendor/reveal.js|TODOs.md|build-aux/)'); do l="$(grep '^lang: ..$' "$f" | awk '{print $2}')" if [ "$l" != 'en' ]; then ref="$(grep '^ref: ' "$f" | awk '{print $2}')" -- cgit v1.2.3