Merge pull request #11664 from OatmealDome/macos-updater-test-mode

MacUI: Add stub implementation of UI::IsTestMode()
This commit is contained in:
Pierre Bourdon 2023-03-16 15:24:49 +01:00 committed by GitHub
commit d623871f3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,6 +139,12 @@ void UI::Init()
{
}
// test-updater.py only works on Windows.
bool UI::IsTestMode()
{
return false;
}
bool Platform::VersionCheck(const std::vector<TodoList::UpdateOp>& to_update,
const std::string& install_base_path, const std::string& temp_dir)
{