From 7b5b6c0c49084a42a544978a9730a76cc2555a00 Mon Sep 17 00:00:00 2001 From: themighty1 Date: Sat, 8 Aug 2015 22:20:04 +0200 Subject: [PATCH] ff:copy manager files on each run --- content/firefox/firefox_specific.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/firefox/firefox_specific.js b/content/firefox/firefox_specific.js index e2e1a92..3a8eeb8 100644 --- a/content/firefox/firefox_specific.js +++ b/content/firefox/firefox_specific.js @@ -197,22 +197,22 @@ function browser_specific_init(){ OS.File.copy(html, dest_html); }) .then(function(){ - return OS.File.copy(js, dest_js, {noOverwrite:true}); + return OS.File.copy(js, dest_js); }) .then(function(){ - OS.File.copy(css, dest_css, {noOverwrite:true}); + OS.File.copy(css, dest_css); }) .then(function(){ - OS.File.copy(check, dest_check, {noOverwrite:true}); + OS.File.copy(check, dest_check); }) .then(function(){ - OS.File.copy(cross, dest_cross, {noOverwrite:true}); + OS.File.copy(cross, dest_cross); }) .then(function(){ - OS.File.copy(swalcss, dest_swalcss, {noOverwrite:true}); + OS.File.copy(swalcss, dest_swalcss); }) .then(function(){ - OS.File.copy(swaljs, dest_swaljs, {noOverwrite:true}); + OS.File.copy(swaljs, dest_swaljs); }); init();