[Updated] euphoria-install.sh: switched wget for curl

This commit is contained in:
mollusk 2016-07-20 15:17:40 -07:00
parent 81fd9eebc7
commit b6b8664297

View File

@ -29,7 +29,7 @@ check_install(){
download_pkgs(){ download_pkgs(){
if [ ! -f ${tmpdir}/${name}-${version}.${fext} ];then if [ ! -f ${tmpdir}/${name}-${version}.${fext} ];then
wget ${url} -O ${tmpdir}/${name}-${version}.${fext} curl -o ${tmpdir}/${name}-${version}.${fext} ${url}
else else
printf "The archive already exists..moving to extraction phase\n" printf "The archive already exists..moving to extraction phase\n"
fi fi