mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-27 19:17:19 +02:00
ColDepends: Allow specifying short(er) UUIDs
This commit is contained in:
parent
01add8a34a
commit
3a00956144
3 changed files with 30 additions and 3 deletions
|
@ -43,6 +43,7 @@
|
|||
#include <shared.h>
|
||||
#include <format.h>
|
||||
#include <main.h>
|
||||
#include <regex>
|
||||
|
||||
#ifdef HAVE_COMMIT
|
||||
#include <commit.h>
|
||||
|
@ -667,9 +668,13 @@ int Context::initialize (int argc, const char** argv)
|
|||
rc = 4;
|
||||
}
|
||||
|
||||
catch (const std::regex_error& e)
|
||||
{
|
||||
std::cout << "regex_error caught: " << e.what() << '\n';
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
error ("Unknown error. Please report.");
|
||||
error ("knknown error. Please report.");
|
||||
rc = 3;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue