Skip to content

Commit

Permalink
hugo_clean_and_update_job.sh: update path to hugo (#875)
Browse files Browse the repository at this point in the history
After updating grass.osgeo.org to Debian 11 (bullseye; see https://trac.osgeo.org/osgeo/ticket/2894) the previously manually installed `hugo` binary now comes from Debian 11:

```
neteler@grasslxd:~$ dpkg -l | grep hugo
ii  hugo                                   0.80.0-6+b5
```

This PR simply updates the path to the `hugo` binary.

(Un)related: issue #312
  • Loading branch information
neteler committed Mar 12, 2023
1 parent 5fbc0e2 commit e405adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/cronjobs_osgeo_lxd/hugo_clean_and_update_job.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
cd /home/neteler/grass-website/ && \
git pull origin master && \
rm -rf /home/neteler/grass-website/public/* && \
nice /usr/local/bin/hugo && \
nice hugo && \
mkdir /var/www/html_new && \
\cp -rp /home/neteler/grass-website/public/* /var/www/html_new/ && \
rm -fr /var/www/html/* && \
Expand Down

0 comments on commit e405adc

Please sign in to comment.