From: Oleg Broytman Date: Sat, 16 Dec 2017 19:13:56 +0000 (+0300) Subject: Fix(cheetah compile): chmod +x X-Git-Url: https://git.phdru.name/?p=phdru.name%2Fphdru.name.git;a=commitdiff_plain;h=c979d8e477cde0da0e4ed7accbdf68066f3fa04e Fix(cheetah compile): chmod +x --- diff --git a/Makefile b/Makefile index 7e55241..3583e98 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ %.py: %.tmpl - umask 022; cheetah compile --encoding=koi8-r --settings='encoding="koi8-r"' --nobackup $< && compyle $@ + 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 >$@