diff --git a/features/src/rapids-build-utils/devcontainer-feature.json b/features/src/rapids-build-utils/devcontainer-feature.json index 85a564c0..50d0e0c8 100644 --- a/features/src/rapids-build-utils/devcontainer-feature.json +++ b/features/src/rapids-build-utils/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "NVIDIA RAPIDS devcontainer build utilities", "id": "rapids-build-utils", - "version": "24.10.6", + "version": "24.10.7", "description": "A feature to install the RAPIDS devcontainer build utilities", "containerEnv": { "BASH_ENV": "/etc/bash.bash_env" diff --git a/features/src/rapids-build-utils/opt/rapids-build-utils/bin/python-conda-pkg-names.sh b/features/src/rapids-build-utils/opt/rapids-build-utils/bin/python-conda-pkg-names.sh index e0c8d55d..6cbbba61 100755 --- a/features/src/rapids-build-utils/opt/rapids-build-utils/bin/python-conda-pkg-names.sh +++ b/features/src/rapids-build-utils/opt/rapids-build-utils/bin/python-conda-pkg-names.sh @@ -37,15 +37,16 @@ python_conda_pkg_names() { if test -d ~/"${!repo_path:-}/.git"; then # the regex will continue until morale improves - find ~/"${!repo_path}/" \ - -type f -name 'meta.yaml' \ - ! -path '*/.conda/*' \ - ! -path '*/build/*' \ - ! -path '*/_skbuild/*' \ - -exec grep -E 'name: ?' {} \; \ - 2>/dev/null \ - | tr -d '[:blank:]' \ - | cut -d':' -f2 \ + find ~/"${!repo_path}/" \ + -type f -name 'meta.yaml' \ + ! -path '*/.conda/*' \ + ! -path '*/build/*' \ + ! -path '*/_skbuild/*' \ + ! -path '*/target/cmake-build/*' \ + -exec grep -E 'name: ?' {} \; \ + 2>/dev/null \ + | tr -d '[:blank:]' \ + | cut -d':' -f2 \ ; fi done