From d4616c78c8b78adb19b55ce4da2663e58d2eefa4 Mon Sep 17 00:00:00 2001 From: lohxt1 Date: Fri, 6 Dec 2024 17:47:27 +0530 Subject: [PATCH] fix: cli envs path resolution --- packages/bruno-cli/src/commands/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-cli/src/commands/run.js b/packages/bruno-cli/src/commands/run.js index 58054be8a..1961b2ac0 100644 --- a/packages/bruno-cli/src/commands/run.js +++ b/packages/bruno-cli/src/commands/run.js @@ -94,7 +94,7 @@ const printRunSummary = (results) => { }; const createCollectionFromPath = (collectionPath) => { - const environmentsPath = `${collectionPath}/environments`; + const environmentsPath = path.join(collectionPath, `environments`); const getFilesInOrder = (collectionPath) => { let collection = { pathname: collectionPath