Skip to content

Commit

Permalink
change driver path lookup path in recipe (#13667)
Browse files Browse the repository at this point in the history
  • Loading branch information
gridnevvvit authored Jan 21, 2025
1 parent 0a74701 commit 805caa2
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions ydb/public/tools/lib/cmds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,9 @@ def parse_erasure(args):


def driver_path_packages(package_path):
return yatest.common.build_path(
"{}/Berkanavt/kikimr/bin/kikimr".format(
package_path
)
)


def udfs_path_packages(package_path):
return yatest.common.build_path(
"{}/Berkanavt/kikimr/libs".format(
package_path
)
)
if os.getenv('YDB_DRIVER_BINARY') is not None:
return os.getenv('YDB_DRIVER_BINARY')
return yatest.common.build_path("{}/ydbd".format(package_path))


def wrap_path(path):
Expand Down

0 comments on commit 805caa2

Please sign in to comment.