diff --git a/docs/divers/devops/hugo/hugo_from_templates.md b/docs/divers/devops/hugo/hugo_from_templates.md index 71a7d0c4..adcdb3dd 100644 --- a/docs/divers/devops/hugo/hugo_from_templates.md +++ b/docs/divers/devops/hugo/hugo_from_templates.md @@ -42,7 +42,7 @@ cd my-website ``` curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest \ | grep browser_download_url \ - | grep Linux-64bit.deb \ + | grep linux-amd64.deb \ | grep -v extended \ | cut -d '"' -f 4 \ | wget -i - @@ -50,7 +50,7 @@ curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest \ #### Install it ``` -sudo dpkg -i hugo*_Linux-64bit.deb +sudo dpkg -i hugo*_linux-amd64.deb ``` ### Run Hugo diff --git a/docs/divers/devops/hugo/install_hugo.md b/docs/divers/devops/hugo/install_hugo.md index 72169510..2ff23030 100644 --- a/docs/divers/devops/hugo/install_hugo.md +++ b/docs/divers/devops/hugo/install_hugo.md @@ -13,7 +13,7 @@ sudo apt install curl wget git ``` curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest \ | grep browser_download_url \ - | grep Linux-64bit.deb \ + | grep linux-amd64.deb \ | grep -v extended \ | cut -d '"' -f 4 \ | wget -i - @@ -21,7 +21,7 @@ curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest \ ### Install it ``` -sudo dpkg -i hugo*_Linux-64bit.deb +sudo dpkg -i hugo*_linux-amd64.deb ``` ## Run hugo