File tree 2 files changed +13
-5
lines changed
features/src/rapids-build-utils
opt/rapids-build-utils/bin
2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " NVIDIA RAPIDS devcontainer build utilities" ,
3
3
"id" : " rapids-build-utils" ,
4
- "version" : " 25.6.3 " ,
4
+ "version" : " 25.6.4 " ,
5
5
"description" : " A feature to install the RAPIDS devcontainer build utilities" ,
6
6
"containerEnv" : {
7
7
"BASH_ENV" : " /etc/bash.bash_env"
Original file line number Diff line number Diff line change 17
17
# shellcheck disable=SC1091
18
18
. rapids-generate-docstring;
19
19
20
- python_conda_pkg_names () {
20
+ _python_conda_pkg_names () {
21
21
local -;
22
22
set -euo pipefail;
23
23
@@ -38,7 +38,12 @@ python_conda_pkg_names() {
38
38
if test -d ~ /" ${! repo_path:- } /.git" ; then
39
39
# the regex will continue until morale improves
40
40
find ~ /" ${! repo_path} /" \
41
- -type f -name ' meta.yaml' \
41
+ -type f \
42
+ \( \
43
+ -name ' meta.yaml' \
44
+ -or \
45
+ -name ' recipe.yaml' \
46
+ \) \
42
47
! -path ' */.conda/*' \
43
48
! -path ' */build/*' \
44
49
! -path ' */_skbuild/*' \
@@ -47,9 +52,12 @@ python_conda_pkg_names() {
47
52
2> /dev/null \
48
53
| tr -d ' [:blank:]' \
49
54
| cut -d' :' -f2 \
55
+ | tr ' [:space:]' ' \0' \
56
+ | tr -s ' \0' \
57
+ | tr ' \0' ' \n' \
50
58
;
51
59
fi
52
- done
60
+ done | sort -u ;
53
61
}
54
62
55
- python_conda_pkg_names " $@ " < & 0;
63
+ _python_conda_pkg_names " $@ " < & 0;
You can’t perform that action at this time.
0 commit comments