Skip to content

Commit 3602e30

Browse files
authored
Fix typo in rapids-make-conda-env (#541)
1 parent 1d420c9 commit 3602e30

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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": "25.8.8",
4+
"version": "25.8.9",
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/make-conda-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ make_conda_env() {
2525
# shellcheck disable=SC1091
2626
. devcontainer-utils-debug-output 'rapids_build_utils_debug' 'make-conda-env';
2727

28-
test ${#quiet[@]} -eq 0 && quiet=(${CONDA_ENV_CREATE_QUIET:+"-q"});
28+
test ${#q[@]} -eq 0 && q=(${CONDA_ENV_CREATE_QUIET:+"-q"});
2929

3030
local env_name="${1}"; shift;
3131
local env_file_name="${env_name}.yml";

0 commit comments

Comments
 (0)