A build step in my team city setup produces a log file. How do I include the contents of that file in the build log?
I already tried the "type" command, but that does not work.
I know I could list the file as artifact so I can download it, but it is really just a log file, so the right place would be in the build log.
The command line build step contains the following script:
SomeBatch.bat
type LogOutput.txt
SomeBatch.bat
calls an EXE that writes the LogOutput.txt
.