From dc078ad88f231a4149bdeba4f1340a821ac08735 Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Mon, 6 Jul 2026 20:49:08 +0300 Subject: [PATCH] [fix] get_bin_path2 calls get_pg_config without os_ops It fails on tests with two machines. --- src/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.py b/src/utils.py index b8bec39b..c62625d9 100644 --- a/src/utils.py +++ b/src/utils.py @@ -166,7 +166,7 @@ def get_bin_path2(os_ops: OsOperations, filename): pg_config_path = os_ops.find_executable('pg_config') if pg_config_path: - bindir = get_pg_config(pg_config_path)["BINDIR"] + bindir = get_pg_config(pg_config_path, os_ops)["BINDIR"] return os_ops.build_path(bindir, filename) return filename