From 38d90b1f32038c635d09f981d3cca81098041bfb Mon Sep 17 00:00:00 2001 From: jetmirhalili11 Date: Thu, 11 Jul 2024 09:58:04 +0200 Subject: [PATCH] fix: remove the `./` from metadata file path [EMA-4088] --- src/services/action-flow/action-flow-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/action-flow/action-flow-service.ts b/src/services/action-flow/action-flow-service.ts index 2a9dd6e..7f8d1e3 100644 --- a/src/services/action-flow/action-flow-service.ts +++ b/src/services/action-flow/action-flow-service.ts @@ -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)); } }