diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-04-17 05:24:38 -0400 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-04-17 05:24:38 -0400 |
commit | 00bc09236b987608b7961dc636e908c6843498ad (patch) | |
tree | 9e3016a03405ab6aff673c6b68b08713ca1088ba /aux | |
parent | acd9ee5f9bad8dff524d54a78d074f64aee3d0a5 (diff) |
fix www-refresh.service
Diffstat (limited to 'aux')
-rw-r--r-- | aux/www-refresh.service | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aux/www-refresh.service b/aux/www-refresh.service index 7336f1c..1c3b209 100644 --- a/aux/www-refresh.service +++ b/aux/www-refresh.service @@ -4,5 +4,5 @@ Description="Website update cron job" [Service] Type=oneshot Environment=LANG=en_US.UTF-8 -WorkingDirectory=~/www -ExecStart=sh -c 'rm -rf .http-cache && make' +WorkingDirectory=%h/www +ExecStart=sh -c 'rm -rf .http-cache && make && git -C .git-cache maintenance run' |