Skip to content

Commit

Permalink
fix: change output directory for lod builds
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega committed Mar 18, 2024
1 parent 26bb838 commit a7db853
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions consumer-server/src/logic/conversion-task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ export async function executeLODConversion(components: Pick<AppComponents, 'logs
const logger = components.logs.getLogger(`ExecuteConversion`)

const cdnBucket = await getCdnBucket(components)
const logFile = `/tmp/asset_bundles_logs/export_log_${entityId}_${Date.now()}.txt`
const s3LogKey = `logs/${$AB_VERSION}/${entityId}/${new Date().toISOString()}.txt`
const outDirectory = `/tmp/asset_bundles_contents/entity_${entityId}`
const logFile = `/tmp/lods_logs/export_log_${entityId}_${Date.now()}.txt`
const s3LogKey = `logs/lods/${$AB_VERSION}/${entityId}/${new Date().toISOString()}.txt`
const outDirectory = `/tmp/lods_contents/entity_${entityId}`
let defaultLoggerMetadata = { entityId, lods, version: $AB_VERSION, logFile } as any

logger.info("Starting conversion for " + $BUILD_TARGET, defaultLoggerMetadata)
Expand Down

0 comments on commit a7db853

Please sign in to comment.