mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Error Handling
- Errors that occur during initialization no longer prevent the display of debug info.
This commit is contained in:
parent
5e693b2530
commit
01253f1cdf
3 changed files with 90 additions and 60 deletions
|
@ -61,8 +61,9 @@ int main (int argc, const char** argv)
|
|||
|
||||
try
|
||||
{
|
||||
context.initialize (argc, argv);
|
||||
status = context.run ();
|
||||
status = context.initialize (argc, argv);
|
||||
if (status == 0)
|
||||
status = context.run ();
|
||||
}
|
||||
|
||||
catch (std::string& error)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue