Skip to content
Snippets Groups Projects
Commit edcab579 authored by Cédric Moreau's avatar Cédric Moreau
Browse files

Allow source installation if curl or wget available

parent 6b3a279c
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment