From fcb4146956a086cc6e49f4f91ee1d35924520fcd Mon Sep 17 00:00:00 2001 From: Benjamin Bach Date: Thu, 1 Oct 2020 12:29:06 +0200 Subject: [PATCH] Update to how Hugo is installed (use extended version) --- README.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index a52a150..5340eee 100644 --- a/README.rst +++ b/README.rst @@ -33,12 +33,12 @@ mirror to find a newer version of Hugo / libsass. .. code-block:: console - # Install Hugo - $ wget https://mirror.csclub.uwaterloo.ca/debian/pool/main/libs/libsass/libsass1_3.6.1-1_amd64.deb -O /tmp/libsass1.deb - $ wget https://mirror.csclub.uwaterloo.ca/debian/pool/main/h/hugo/hugo_0.58.3-1_amd64.deb -O /tmp/hugo.deb - $ sudo dpkg -i /tmp/hugo.deb /tmp/libsass1.deb + HUGO_VERSION="0.63.2" + wget -O hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.deb + sudo dpkg -i hugo.deb + # ...or try sudo gdebi hugo.deb - # Go to project directory + # Go to project directory inside this repository $ cd hugo_site # Run dev server