Skip to content

Instantly share code, notes, and snippets.

@victoriadrake
Created May 5, 2024 18:59
Show Gist options
  • Save victoriadrake/1d70862af97a722b49f02892e286af86 to your computer and use it in GitHub Desktop.
Save victoriadrake/1d70862af97a722b49f02892e286af86 to your computer and use it in GitHub Desktop.
Install the latest extended version of Hugo
sudo apt-get install jq
HUGO_VERSION=$(curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | jq -r '.tag_name')
curl -sSL "https://github.com/gohugoio/hugo/releases/download/${HUGO_VERSION}/hugo_extended_${HUGO_VERSION:1}_linux-amd64.deb" -o hugo.deb
sudo dpkg -i hugo.deb
hugo version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment