Skip to content
Snippets Groups Projects
Commit 6c45fc6e authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

Merge branch 'master' into 'master'

add check if wget is installed

See merge request clients/cesium-grp/cesium!629
parents 1635074e 609271f7
No related branches found
No related tags found
1 merge request!629add check if wget is installed
Pipeline #11378 failed
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