Skip to content

Commit ab018a7

Browse files
authored
fix: Normalize mirror node resources path (#1175)
Signed-off-by: Ivo Yankov <[email protected]>
1 parent 9d9ef53 commit ab018a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/constants.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ export const POD_CONDITION_READY = 'Ready';
118118
export const POD_CONDITION_POD_SCHEDULED = 'PodScheduled';
119119
export const POD_CONDITION_STATUS_TRUE = 'True';
120120

121-
export const EXPLORER_VALUES_FILE = path.join('resources', 'hedera-explorer-values.yaml');
122-
export const MIRROR_NODE_VALUES_FILE = path.join('resources', 'mirror-node-values.yaml');
121+
export const EXPLORER_VALUES_FILE = path.join(RESOURCES_DIR, 'hedera-explorer-values.yaml');
122+
export const MIRROR_NODE_VALUES_FILE = path.join(RESOURCES_DIR, 'mirror-node-values.yaml');
123123

124124
export const NODE_LOG_FAILURE_MSG = 'failed to download logs from pod';
125125

0 commit comments

Comments
 (0)