From 0a48d13d6cf75a1c60d3040fb5fce1aee163107e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=B2=A0=5F=E0=B2=A0?= <51381523+QazCetelic@users.noreply.github.com> Date: Thu, 28 Dec 2023 12:11:47 +0100 Subject: [PATCH] Fix quick installation instruction The command in the documentation was wrong and didn't run the script with elevated privileges. This one does. --- docs/pages/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/installation.md b/docs/pages/installation.md index 244d5c8..c59b5f0 100644 --- a/docs/pages/installation.md +++ b/docs/pages/installation.md @@ -5,7 +5,7 @@ Linux & macOS. Windows is not supported. If you have problems installing please Autorestic requires `bash`, `wget` and `bzip2` to be installed. For most systems these should be already installed. ```bash -wget -qO - https://raw.githubusercontent.com/cupcakearmy/autorestic/master/install.sh | bash +sudo bash -c "$(wget -qO - https://raw.githubusercontent.com/cupcakearmy/autorestic/master/install.sh)" ``` ## Alternatives