Skip to content

Commit 0a73f81

Browse files
authored
Don't append to but overwrite the log file (#18746)
1 parent b271530 commit 0a73f81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SourceBuild/content/repo-projects/Directory.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@
320320
<PropertyGroup>
321321
<FullCommand>$(BuildCommand)</FullCommand>
322322
<FullCommand Condition="'$(LogVerbosityOptOut)' != 'true'">$(FullCommand) /v:$(LogVerbosity)</FullCommand>
323-
<FullCommand Condition="'$(MinimalConsoleLogOutput)' == 'true'">$(FullCommand) &gt;&gt; $(RepoConsoleLogFile) 2&gt;&amp;1</FullCommand>
323+
<FullCommand Condition="'$(MinimalConsoleLogOutput)' == 'true'">$(FullCommand) &gt; $(RepoConsoleLogFile) 2&gt;&amp;1</FullCommand>
324324
</PropertyGroup>
325325

326326
<MakeDir Directories="$([System.IO.Path]::GetDirectoryName('$(RepoConsoleLogFile)'));

0 commit comments

Comments
 (0)