Skip to content

Commit

Permalink
fix(EntityModel): keep path relative before giving it to getCacheStats
Browse files Browse the repository at this point in the history
  • Loading branch information
meszaros-lajos-gyorgy committed Apr 27, 2024
1 parent 06332ec commit fa2b717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EntityModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class EntityModel {
files[binaryTarget] = binarySource
} else {
const cachedBinary = await getCacheStats(
path.resolve(EntityModel.targetPath, targetName, `${entityName}.ftl`),
path.join(EntityModel.targetPath, targetName, `${entityName}.ftl`),
settings,
)

Expand Down

0 comments on commit fa2b717

Please sign in to comment.