Skip to content

Commit a6072d7

Browse files
authored
fix typo selecting CMAKE_BUILD_TYPE from python arguments (#671)
1 parent b6281d0 commit a6072d7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

features/src/rapids-build-utils/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "NVIDIA RAPIDS devcontainer build utilities",
33
"id": "rapids-build-utils",
4-
"version": "26.4.3",
4+
"version": "26.4.4",
55
"description": "A feature to install the RAPIDS devcontainer build utilities",
66
"containerEnv": {
77
"BASH_ENV": "/etc/bash.bash_env"

features/src/rapids-build-utils/opt/rapids-build-utils/bin/tmpl/python.build.wheel.tmpl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ EOF
101101
echo "Building ${PY_LIB} wheel";
102102
export ${PY_ENV} PATH="$PATH";
103103
local cudaflags="${CUDAFLAGS:+$CUDAFLAGS }-t=${n_arch}";
104-
local build_type="$(rapids-select-cmake-build-type "${cmake_args_[@]}" || echo "Release")";
104+
local build_type="$(rapids-select-cmake-build-type "${cmake_args[@]}" || echo "Release")";
105105
local nvcc_append_flags="${NVCC_APPEND_FLAGS:+$NVCC_APPEND_FLAGS }-t=${n_arch}";
106106

107107
CUDAFLAGS="${cudaflags}" \

features/src/rapids-build-utils/opt/rapids-build-utils/bin/tmpl/python.install.tmpl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ EOF
119119
echo "Installing ${PY_LIB}";
120120
export ${PY_ENV} PATH="$PATH";
121121
local cudaflags="${CUDAFLAGS:+$CUDAFLAGS }-t=${n_arch}";
122-
local build_type="$(rapids-select-cmake-build-type "${cmake_args_[@]}" || echo "Release")";
122+
local build_type="$(rapids-select-cmake-build-type "${cmake_args[@]}" || echo "Release")";
123123
local nvcc_append_flags="${NVCC_APPEND_FLAGS:+$NVCC_APPEND_FLAGS }-t=${n_arch}";
124124

125125
CUDAFLAGS="${cudaflags}" \

0 commit comments

Comments
 (0)