From 896114680c525ed2ae6a20f5990ed13e3b4a1d1e Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Thu, 8 Sep 2022 12:00:20 +0200 Subject: [PATCH] wip --- features/support/env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/support/env.js b/features/support/env.js index eaa25fbc5..5ca8a3aa0 100644 --- a/features/support/env.js +++ b/features/support/env.js @@ -21,7 +21,7 @@ module.exports = function () { this.PROFILES_PATH = path.resolve(this.ROOT_PATH, 'profiles'); this.FIXTURES_PATH = path.resolve(this.ROOT_PATH, 'unit_tests/fixtures'); - this.BIN_PATH = process.env.OSRM_BUILD_DIR && process.env.OSRM_BUILD_DIR || path.resolve(this.ROOT_PATH, 'build'); + this.BIN_PATH = process.env.OSRM_BUILD_DIR && process.env.OSRM_BUILD_DIR || path.resolve(this.ROOT_PATH, 'build/Release'); this.DATASET_NAME = 'cucumber'; this.PLATFORM_WINDOWS = process.platform.match(/^win.*/); this.DEFAULT_ENVIRONMENT = process.env;