Skip to content

Commit

Permalink
ignore installed packages on forced install
Browse files Browse the repository at this point in the history
  • Loading branch information
adlerre committed Sep 15, 2016
1 parent fd6779b commit 291b13a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/chrome/lib/IBWUpdater.js
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ function IBWUpdaterPackages(aForceInstall) {
* aPackage - the package object
*/
function addToInstalled(aPackage) {
if (aPackage instanceof IBWUpdaterPackage) {
if (!forceInstall && aPackage instanceof IBWUpdaterPackage) {
localPackages.push(aPackage);
}
}
Expand Down

0 comments on commit 291b13a

Please sign in to comment.