From edcab5793b3a4a876768f6d1e1ef59d3eb046b9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Moreau?= <cem.moreau@gmail.com> Date: Thu, 3 Dec 2015 14:54:21 +0100 Subject: [PATCH] Allow source installation if curl or wget available --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.sh b/install.sh index cadae2ae8..a4e6ce0e8 100644 --- a/install.sh +++ b/install.sh @@ -218,6 +218,10 @@ ucoin_do_install() { install_ucoin_as_script elif ucoin_has "git"; then install_ucoin_from_git + elif ucoin_has "curl"; then + install_ucoin_from_git + elif ucoin_has "wget"; then + install_ucoin_from_git else echo >&2 "You need git, curl, or wget to install ucoin" exit 1 -- GitLab