mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Clean Build
- Removed a warning for a clean build on CentOS.
This commit is contained in:
parent
f5ea55031c
commit
1813f67230
1 changed files with 5 additions and 6 deletions
|
@ -137,11 +137,10 @@ int CmdDone::execute (std::string& output)
|
|||
context.tdb.unlock ();
|
||||
|
||||
if (context.config.getBoolean ("echo.command"))
|
||||
if (count == 1)
|
||||
out << format (STRING_CMD_DONE_MARKED, count)
|
||||
<< "\n";
|
||||
else
|
||||
out << format (STRING_CMD_DONE_MARKED_N, count)
|
||||
out << format ((count == 1
|
||||
? STRING_CMD_DONE_MARKED
|
||||
: STRING_CMD_DONE_MARKED_N),
|
||||
count)
|
||||
<< "\n";
|
||||
|
||||
output = out.str ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue