From 9695093a141a01d366841df5ef5f3d36ac6c0b3d Mon Sep 17 00:00:00 2001 From: Doron Cohen <4966182+doron-cohen@users.noreply.github.com> Date: Tue, 18 Aug 2020 17:09:42 +0300 Subject: [PATCH] Fix Arch Linux installation command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Running `sudo pacman -Syu hugo` starts a full system upgrade which I believe is not the intention here. ``` ❯ sudo pacman -Syu hugo [sudo] password for doron: :: Synchronizing package databases... core 131.8 KiB 399 KiB/s 00:00 [##############################################################################################] 100% extra 1663.7 KiB 1095 KiB/s 00:02 [##############################################################################################] 100% community 5.1 MiB 3.15 MiB/s 00:02 [##############################################################################################] 100% :: Starting full system upgrade... ... ``` --- content/en/getting-started/installing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/getting-started/installing.md b/content/en/getting-started/installing.md index 32e9df18e..e0df15d72 100644 --- a/content/en/getting-started/installing.md +++ b/content/en/getting-started/installing.md @@ -495,7 +495,7 @@ This option is not recommended because the Hugo in Linux package managers for De You can also install Hugo from the Arch Linux [community](https://www.archlinux.org/packages/community/x86_64/hugo/) repository. Applies also to derivatives such as Manjaro. ``` -sudo pacman -Syu hugo +sudo pacman -S hugo ``` ### Fedora, Red Hat and CentOS