Fix version parser (jenkins)

This commit is contained in:
momo5502 2016-02-04 23:19:20 +01:00
parent 6dd250259c
commit 59c1ef8fc1

View File

@ -32,7 +32,12 @@ namespace Components
}
else
{
printf("%s", buffer);
// Only print to stdout, when doing unit tests
if (Loader::PerformingUnitTests())
{
printf("%s", buffer);
}
OutputDebugStringA(buffer);
}
}