From b0d4326d5de91e703fb4d03f950c348d44363ab7 Mon Sep 17 00:00:00 2001 From: Florian du Garage Num Date: Sun, 23 Oct 2022 20:20:32 +0200 Subject: [PATCH] change hugo deb url --- docs/divers/devops/hugo/hugo_from_templates.md | 4 ++-- docs/divers/devops/hugo/install_hugo.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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