Skip to content

Commit

Permalink
fix: remove the ./ from metadata file path
Browse files Browse the repository at this point in the history
[EMA-4088]
  • Loading branch information
jetmirhalili11 committed Jul 11, 2024
1 parent 4a60c8b commit 38d90b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/action-flow/action-flow-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class ActionFlowService {
fileName = fileName + (fileName.endsWith(".json") ? "" : ".json");
const metadata = fileService.readFile(fileName);

zip.addFile("./metadata.json", Buffer.from(metadata));
zip.addFile("metadata.json", Buffer.from(metadata));
}
}

Expand Down

0 comments on commit 38d90b1

Please sign in to comment.