From c979d8e477cde0da0e4ed7accbdf68066f3fa04e Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 16 Dec 2017 22:13:56 +0300 Subject: [PATCH] Fix(cheetah compile): chmod +x --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 >$@ -- 2.39.2