Skip to content

Commit f10b313

Browse files
committed
Revert WriteAllText back to AppendAllText from 7aea8ec, since it broke a couple of tests
1 parent 6005bb7 commit f10b313

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitVersionExe/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ static void ConfigureLogging(Arguments arguments)
160160
static void WriteLogEntry(Arguments arguments, string s)
161161
{
162162
var contents = string.Format("{0}\t\t{1}\r\n", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), s);
163-
File.WriteAllText(arguments.LogFilePath, contents);
163+
File.AppendAllText(arguments.LogFilePath, contents);
164164
}
165165

166166
static List<string> GetArgumentsWithoutExeName()

0 commit comments

Comments
 (0)