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
No related merge requests found
File added
File deleted
...@@ -67,8 +67,8 @@ install_from_github() { ...@@ -67,8 +67,8 @@ install_from_github() {
do_install() { do_install() {
if ! is_installed "curl"; then if [! is_installed "curl"] | [! is_installed "wget"]; then
echo "=> curl is not available. You will likely need to install 'curl' package." echo "=> curl is not available. You will likely need to install 'curl' or 'wget' package."
exit 1 exit 1
fi fi
if ! is_installed "unzip"; then if ! is_installed "unzip"; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment