Skip to content
Snippets Groups Projects
Commit 609271f7 authored by timothe's avatar timothe Committed by Benoit Lavenier
Browse files

add check if wget is installed

parent 9148605d
No related branches found
No related tags found
1 merge request!629add check if wget is installed
File added
File deleted
......@@ -67,8 +67,8 @@ install_from_github() {
do_install() {
if ! is_installed "curl"; then
echo "=> curl is not available. You will likely need to install 'curl' package."
if [! is_installed "curl"] | [! is_installed "wget"]; then
echo "=> curl is not available. You will likely need to install 'curl' or 'wget' package."
exit 1
fi
if ! is_installed "unzip"; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment