diff --git a/README.md b/README.md index 9f21770..2ca1bee 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ Firefox Installer to have automatic updates # Dependencies -- wget - git - tar - curl @@ -21,11 +20,11 @@ Firefox Installer to have automatic updates - 64-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox_installer_64 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox_installer_64 | sh ~~~ - 32-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox_installer_32 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox_installer_32 | sh ~~~ # Thunderbird @@ -34,11 +33,11 @@ wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8 - 64-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/thunderbird_installer_64 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/thunderbird_installer_64 | sh ~~~ - 32-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/thunderbird_installer_32 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/thunderbird_installer_32 | sh ~~~ @@ -47,11 +46,11 @@ wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8 #### Run this in terminal (NOT ROOT) - 64-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/seamonkey_installer_64 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/seamonkey_installer_64 | sh ~~~ - 32-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/seamonkey_installer_32 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/seamonkey_installer_32 | sh ~~~ # Waterfox @@ -59,7 +58,7 @@ wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8 #### Run this in terminal (NOT ROOT) - 64-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/waterfox_installer_64 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/waterfox_installer_64 | sh ~~~ # ESR @@ -68,11 +67,11 @@ wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8 - 64-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox-esr_installer_64 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox-esr_installer_64 | sh ~~~ - 32-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox-esr_installer_32 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox-esr_installer_32 | sh ~~~ @@ -82,11 +81,11 @@ wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8 - 64-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox-developer_installer_64 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox-developer_installer_64 | sh ~~~ - 32-bits ~~~ -wget -qO- https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox-developer_installer_32 | sh +curl -L https://github.com/Can202/FirefoxInstallerLinux/releases/download/v0.8/firefox-developer_installer_32 | sh ~~~ diff --git a/extras/firefox-developer/firefox-developer_installer_32 b/extras/firefox-developer/firefox-developer_installer_32 index 3359e50..1c01a68 100755 --- a/extras/firefox-developer/firefox-developer_installer_32 +++ b/extras/firefox-developer/firefox-developer_installer_32 @@ -18,9 +18,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi diff --git a/extras/firefox-developer/firefox-developer_installer_64 b/extras/firefox-developer/firefox-developer_installer_64 index e488f25..8973c88 100755 --- a/extras/firefox-developer/firefox-developer_installer_64 +++ b/extras/firefox-developer/firefox-developer_installer_64 @@ -18,9 +18,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi diff --git a/extras/firefox-esr/firefox-esr_installer_32 b/extras/firefox-esr/firefox-esr_installer_32 index f9109c2..70b7cdf 100755 --- a/extras/firefox-esr/firefox-esr_installer_32 +++ b/extras/firefox-esr/firefox-esr_installer_32 @@ -18,9 +18,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi diff --git a/extras/firefox-esr/firefox-esr_installer_64 b/extras/firefox-esr/firefox-esr_installer_64 index c06a52f..5fbc3c6 100755 --- a/extras/firefox-esr/firefox-esr_installer_64 +++ b/extras/firefox-esr/firefox-esr_installer_64 @@ -18,9 +18,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi diff --git a/extras/seamonkey/seamonkey_installer_32 b/extras/seamonkey/seamonkey_installer_32 index 357d4f1..84730fc 100755 --- a/extras/seamonkey/seamonkey_installer_32 +++ b/extras/seamonkey/seamonkey_installer_32 @@ -18,9 +18,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi diff --git a/extras/seamonkey/seamonkey_installer_64 b/extras/seamonkey/seamonkey_installer_64 index 62ef76a..bf9abca 100755 --- a/extras/seamonkey/seamonkey_installer_64 +++ b/extras/seamonkey/seamonkey_installer_64 @@ -18,9 +18,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi diff --git a/extras/thunderbird/thunderbird_installer_32 b/extras/thunderbird/thunderbird_installer_32 index 66838c7..54ce602 100755 --- a/extras/thunderbird/thunderbird_installer_32 +++ b/extras/thunderbird/thunderbird_installer_32 @@ -18,9 +18,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi diff --git a/extras/thunderbird/thunderbird_installer_64 b/extras/thunderbird/thunderbird_installer_64 index 0b792f5..a892238 100755 --- a/extras/thunderbird/thunderbird_installer_64 +++ b/extras/thunderbird/thunderbird_installer_64 @@ -18,9 +18,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi diff --git a/extras/waterfox/waterfox_installer_64 b/extras/waterfox/waterfox_installer_64 index 17d5723..b67e317 100755 --- a/extras/waterfox/waterfox_installer_64 +++ b/extras/waterfox/waterfox_installer_64 @@ -18,9 +18,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi diff --git a/firefox_installer_32 b/firefox_installer_32 index 49ddfc9..d9f5e8f 100755 --- a/firefox_installer_32 +++ b/firefox_installer_32 @@ -58,9 +58,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi diff --git a/firefox_installer_64 b/firefox_installer_64 index 1f461d5..27d8ef2 100755 --- a/firefox_installer_64 +++ b/firefox_installer_64 @@ -59,9 +59,9 @@ then depen=false read nothing fi -if [ ! -f "/usr/bin/wget" ] +if [ ! -f "/usr/bin/curl" ] then - echo wget is not installed... + echo curl is not installed... depen=false read nothing fi