aboutsummaryrefslogtreecommitdiff
path: root/template.sh
blob: 4d498c71d7a2eee1cdde184488f5fa2ad4755ed6 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh

for f in $(git ls-files *.j2 common/*.j2); do
    for ld in locale/*/; do
	l=$(basename $ld)
	echo "$f: $l"
	python template.py $f $l $(basename $f .html.j2).$l.html
    done
done