]> git.phdru.name Git - phdru.name/phdru.name.git/commitdiff
Fix: Ignore conversion errors in `iconv`
authorOleg Broytman <phd@phdru.name>
Sun, 5 Apr 2020 14:42:34 +0000 (17:42 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 5 Apr 2020 14:43:29 +0000 (17:43 +0300)
Makefile
make-files

index 3583e98035dd3f5dab58f8eb25e11dfd909a4564..de032c099cb343e6b2e558c153a45e3fe7161044 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@
        umask 022; cheetah compile --encoding=koi8-r --settings='encoding="koi8-r"' --nobackup $< && compyle $@ && chmod +x $@
 
 %.html: %.tmpl
-       umask 022; PYTHONPATH=. PYTHONIOENCODING=koi8-r:replace cheetah fill --encoding=koi8-r --settings='encoding="koi8-r"' --nobackup --stdout $< | iconv -f utf-8 -t koi8-r >$@
+       umask 022; PYTHONPATH=. PYTHONIOENCODING=koi8-r:replace cheetah fill --encoding=koi8-r --settings='encoding="koi8-r"' --nobackup --stdout $< | iconv -c -f utf-8 -t koi8-r >$@
 
 
 .PHONY: fast
index 5c736eaab2ee41b82d45b6d96c48727b2ebf3857..ca1ac094b48f83a66dd7b1cdac9e7600370f0a41 100755 (executable)
@@ -15,7 +15,7 @@ for tmpl in "$@"; do
    outfile="`basename \"$tmpl\" .tmpl`.html"
    echo "$tmpl => $dir/$outfile"
    cheetah fill --encoding=koi8-r --settings='encoding="koi8-r"' \
-      --nobackup --stdout "$tmpl" | iconv -f utf-8 -t koi8-r >"$dir/$outfile" || exit 1
+      --nobackup --stdout "$tmpl" | iconv -c -f utf-8 -t koi8-r >"$dir/$outfile" || exit 1
 done
 
 exec sitemap_gen.py --config=sitemaps/phdru.name-config.xml