From cc7ffd08c89521d4104bf4e2f7a4ca1aa5a6709a Mon Sep 17 00:00:00 2001 From: Jan Pokorný Date: Mon, 8 Apr 2013 11:47:48 +0200 Subject: firstrun/10-firefox: use timestamping for wget MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jan Pokorný --- scripts/firstrun/10-firefox | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'scripts/firstrun/10-firefox') 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 -- cgit