diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-10-05 22:55:04 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-10-05 22:55:04 -0300 |
commit | 8b303556a3d84c469ec4662fe5821fbd9e9b0943 (patch) | |
tree | 4f80e86b8945ced7944851093c5c779628853d55 | |
parent | 2eb70c2966be257e6b90fe7b275405a17c6b11b7 (diff) | |
download | templates-8b303556a3d84c469ec4662fe5821fbd9e9b0943.tar.gz templates-8b303556a3d84c469ec4662fe5821fbd9e9b0943.tar.bz2 |
Makefile: jhead target
-rw-r--r-- | ikiwiki/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ikiwiki/Makefile b/ikiwiki/Makefile index 0db794d..8dc0c96 100644 --- a/ikiwiki/Makefile +++ b/ikiwiki/Makefile @@ -16,7 +16,7 @@ all: web web_deploy -web: +web: jhead @ikiwiki --setup ikiwiki.yaml @chmod +x bin/* @@ -33,3 +33,7 @@ post_receive: whoami: git config user.name "User" git config user.email user@example.org + +jhead: + @find -name '*jpg' -exec jhead -dc -de -di -dx -du {} \; + @find -name '*jpeg' -exec jhead -dc -de -di -dx -du {} \; |