summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/firstrun/10-firefox6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/firstrun/10-firefox b/scripts/firstrun/10-firefox
index 4d16234..8e080cc 100644
--- a/scripts/firstrun/10-firefox
+++ b/scripts/firstrun/10-firefox
@@ -1,3 +1,5 @@
+WGET="wget -N"
+
# plugins
plugins+=" 59" # *** User Agent Switcher
@@ -19,7 +21,7 @@ plugins+=" 193270" # ? Print Edit
plugins+=" 235854" # ***** Pentadactyl
for plugin in $plugins; do
- wget "https://addons.mozilla.org/firefox/downloads/latest/${plugin}/addon-${plugin}-latest.xpi"
+ ${WGET} "https://addons.mozilla.org/firefox/downloads/latest/${plugin}/addon-${plugin}-latest.xpi"
done
# searches
@@ -27,7 +29,7 @@ done
#searches+=" 161972" # *** DuckDuckGo (HTTPS / SSL)
#
#for search in $searches; do
-# wget "https://addons.mozilla.org/firefox/downloads/latest/${plugin}/addon-${plugin}-latest.xml"
+# ${WGET} "https://addons.mozilla.org/firefox/downloads/latest/${plugin}/addon-${plugin}-latest.xml"
#done
firefox *.xpi && rm *.xpi