Skip to content
This repository was archived by the owner on Mar 22, 2023. It is now read-only.

Commit 2b52c11

Browse files
CI: fix wrong variable name in build scripts
1 parent 420342c commit 2b52c11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

utils/docker/prepare-for-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ set -e
1212

1313
INSTALL_DIR=/tmp/libpmemobj-cpp
1414
EXAMPLE_TEST_DIR=/tmp/build_example
15-
TEST_DIR=${PMEMKV_TEST_DIR:-${DEFAULT_TEST_DIR}}
15+
TEST_DIR=${LIBPMEMOBJCPP_TEST_DIR:-${DEFAULT_TEST_DIR}}
1616

1717
### Helper functions, used in run-*.sh scripts
1818
function sudo_password() {

utils/docker/run-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set -e
1414
source $(dirname ${0})/prepare-for-build.sh
1515

1616
# params set for this file; if not previously set, the right-hand param is used
17-
TEST_DIR=${PMEMKV_TEST_DIR:-${DEFAULT_TEST_DIR}}
17+
TEST_DIR=${LIBPMEMOBJCPP_TEST_DIR:-${DEFAULT_TEST_DIR}}
1818
CHECK_CPP_STYLE=${CHECK_CPP_STYLE:-ON}
1919
TESTS_LONG=${TESTS_LONG:-OFF}
2020
TESTS_TBB=${TESTS_TBB:-ON}

0 commit comments

Comments
 (0)