diff options
Diffstat (limited to 'Makefile.env')
-rw-r--r-- | Makefile.env | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/Makefile.env b/Makefile.env index 77df368..f41c74a 100644 --- a/Makefile.env +++ b/Makefile.env @@ -18,8 +18,14 @@ HTTP_BASE = www web: jhead mat + @#echo Applying workaround since exclude patterns are not working... + @find vendor -name '*.md' -exec rm {} \; + @ikiwiki --setup ikiwiki.yaml + @#echo Cleaning up... + git submodule foreach git restore . + web_deploy: @rsync -avz --delete www/ blog:/var/sites/blog/www/ @@ -30,9 +36,9 @@ jhead: @find -name '*jpeg' -exec jhead -dc -de -di -dx -du {} \; mat: - @find -type f -name '*.ods' -exec mat2 -V {} \; - @find -type f -name '*.ods' -exec rename -f 's/\.cleaned.ods/.ods/' {} \; - @find -type f -name '*.pdf' -exec mat2 -V {} \; - @find -type f -name '*.pdf' -exec rename -f 's/\.cleaned.pdf/.pdf/' {} \; - @find -type f -name '*.ods' -exec chmod 644 {} \; - @find -type f -name '*.pdf' -exec chmod 644 {} \; + @#find -type f -name '*.ods' -exec mat2 -V {} \; + @#find -type f -name '*.ods' -exec rename -f 's/\.cleaned.ods/.ods/' {} \; + @#find -type f -name '*.pdf' -exec mat2 -V {} \; + @#find -type f -name '*.pdf' -exec rename -f 's/\.cleaned.pdf/.pdf/' {} \; + @#find -type f -name '*.ods' -exec chmod 644 {} \; + @#find -type f -name '*.pdf' -exec chmod 644 {} \; |