diff --git a/browser/auto_updater_mac.mm b/browser/auto_updater_mac.mm index e5bab41bf9c..094b599b1c0 100644 --- a/browser/auto_updater_mac.mm +++ b/browser/auto_updater_mac.mm @@ -48,8 +48,7 @@ void AutoUpdater::SetFeedURL(const std::string& feed) { int state = [stateNumber integerValue]; if (state == SQRLUpdaterStateCheckingForUpdate) { delegate->OnCheckingForUpdate(); - } - else if (state == SQRLUpdaterStateDownloadingUpdate) { + } else if (state == SQRLUpdaterStateDownloadingUpdate) { delegate->OnUpdateAvailable(); } }]; @@ -79,8 +78,7 @@ void AutoUpdater::CheckForUpdates() { base::Time::FromDoubleT(update.releaseDate.timeIntervalSince1970), base::SysNSStringToUTF8(update.updateURL.absoluteString), base::Bind(RelaunchToInstallUpdate)); - } - else { + } else { // When the completed event is sent with no update, then we know there // is no update available. delegate->OnUpdateNotAvailable(); diff --git a/script/cibuild b/script/cibuild index edabc2df922..d9e8ceb6892 100755 --- a/script/cibuild +++ b/script/cibuild @@ -13,6 +13,7 @@ SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) def main(): rm_rf(os.path.join(SOURCE_ROOT, 'out')) rm_rf(os.path.join(SOURCE_ROOT, 'node_modules')) + rm_rf(os.path.join(SOURCE_ROOT, 'frameworks')) rm_rf(os.path.join(SOURCE_ROOT, 'vendor', 'brightray', 'vendor', 'download', 'libchromiumcontent'))