Rename files to reflect refactoring elsewhere

GitOrigin-RevId: 335f876913b7868cf69dcd55dd156261edd98945
This commit is contained in:
andrew rumble 2024-06-18 09:19:29 +01:00 committed by Copybot
parent 487d9125a2
commit 60a75d12b0

View file

@ -24,16 +24,18 @@ function getContentDir(projectId, userId) {
module.exports = { module.exports = {
async archiveFilesForBuild(projectId, userId, build) { async archiveFilesForBuild(projectId, userId, build) {
logger.debug({ projectId, userId, build }, 'Will create zip file') logger.debug({ projectId, userId, build }, 'Will create zip file')
const validFiles = await this._getAllOutputFiles(projectId, userId, build)
const outputFiles = await this._getAllOutputFiles(projectId, userId, build)
const archive = archiver('zip') const archive = archiver('zip')
archive.on('error', err => { archive.on('error', err => {
logger.warn({ err }, 'error emitted when creating output files archive') logger.warn({ err }, 'error emitted when creating output files archive')
}) })
const missingFiles = [] const missingFiles = []
for (const file of validFiles) { for (const file of outputFiles) {
let fileHandle let fileHandle
try { try {