From 5b014f6403a4670ca959e94af7f5c05342d4ac5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Concei=C3=A7=C3=A3o?= Date: Thu, 10 Nov 2022 18:56:24 +0000 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 68d7227..d1ff50f 100644 --- a/README.md +++ b/README.md @@ -278,12 +278,13 @@ The following commands are the old way and commands under the UI executable, the ### Installing the dependencies **Copy the following script, paste and run on a terminal:** -(Required if you didn't use the [auto installer](https://github.com/sn4k3/UVtools#to-auto-install-on-linux)) +(Required if you didn't use the [auto installer](https://github.com/sn4k3/UVtools#to-auto-install-on-linux) or if it failed to detect and install dependencies) ```bash [ "$(command -v apt-get)" -a -z "$(command -v curl)" ] && sudo apt-get install -y curl [ "$(command -v pacman)" -a -z "$(command -v curl)" ] && sudo pacman -S curl [ "$(command -v dnf)" -a -z "$(command -v curl)" ] && sudo dnf install -y curl +[ "$(command -v zypper)" -a -z "$(command -v curl)" ] && sudo zypper install -y curl sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/sn4k3/UVtools/master/Scripts/install-dependencies.sh)" ```