Address additional review comments

This commit is contained in:
Angela P Wen 2022-08-11 13:58:01 +02:00
Родитель d909f714fb
Коммит 4e121c0ef5
4 изменённых файлов: 10 добавлений и 6 удалений

5
lib/actions-util.js сгенерированный
Просмотреть файл

@ -692,8 +692,9 @@ async function printDebugLogs(config) {
}
for (const entry of entries) {
if (entry.isFile()) {
core.startGroup(`CodeQL Debug Logs - ${language} - ${entry.name}`);
process.stdout.write(fs.readFileSync(path.resolve(dir, entry.name)));
const absolutePath = path.resolve(dir, entry.name);
core.startGroup(`CodeQL Debug Logs - ${language} - ${entry.name} from file at path ${absolutePath}`);
process.stdout.write(fs.readFileSync(absolutePath));
core.endGroup();
}
else if (entry.isDirectory()) {

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

2
lib/util.js сгенерированный
Просмотреть файл

@ -652,7 +652,7 @@ function doesDirectoryExist(dirPath) {
}
exports.doesDirectoryExist = doesDirectoryExist;
/**
* Returns a list of files in a given directory.
* Returns a recursive list of files in a given directory.
*/
function listFolder(dir) {
if (!doesDirectoryExist(dir)) {

Просмотреть файл

@ -891,8 +891,11 @@ export async function printDebugLogs(config: Config) {
}
for (const entry of entries) {
if (entry.isFile()) {
core.startGroup(`CodeQL Debug Logs - ${language} - ${entry.name}`);
process.stdout.write(fs.readFileSync(path.resolve(dir, entry.name)));
const absolutePath = path.resolve(dir, entry.name);
core.startGroup(
`CodeQL Debug Logs - ${language} - ${entry.name} from file at path ${absolutePath}`
);
process.stdout.write(fs.readFileSync(absolutePath));
core.endGroup();
} else if (entry.isDirectory()) {
walkLogFiles(path.resolve(dir, entry.name));