mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug
- Fixed bug whereby after a merge, the undo.data file had all lines concatenated without \n characters.
This commit is contained in:
parent
6fd876b8dd
commit
cb14ed128e
1 changed files with 1 additions and 1 deletions
|
@ -1535,7 +1535,7 @@ void TDB::merge (const std::string& mergeFile)
|
|||
}
|
||||
|
||||
// write undo file
|
||||
if (! File::write (undoFile, undo, false))
|
||||
if (! File::write (undoFile, undo, true))
|
||||
throw std::string ("Could not write '") + undoFile + "'.";
|
||||
}
|
||||
else // nothing to be done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue