From 137ce11ac5aae738bcadda4c931e7558e4a3ef97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Concei=C3=A7=C3=A3o?= Date: Tue, 11 Oct 2022 23:41:33 +0100 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dc0dd55..fa2b747 100644 --- a/README.md +++ b/README.md @@ -258,9 +258,9 @@ The following commands are the old way and commands under the UI executable, the ```bash -[[ $(command -v apt-get) ]] && sudo apt-get install -y wget -[[ $(command -v pacman) ]] && sudo pacman -S wget -[[ $(command -v yum) ]] && sudo yum install -y wget +[[ "$(command -v apt-get)" ]] && sudo apt-get install -y wget +[[ "$(command -v pacman)" ]] && sudo pacman -S wget +[[ "$(command -v yum)" ]] && sudo yum install -y wget wget -qO - https://raw.githubusercontent.com/sn4k3/UVtools/master/Scripts/install-dependencies.sh | sudo bash wget -qO - https://raw.githubusercontent.com/sn4k3/UVtools/master/Scripts/libdl-solver.sh | sudo bash ```