Skip to content

Commit 15edc0e

Browse files
authored
consider .conda files in rapids-extract-conda-files (#122)
1 parent c777738 commit 15edc0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/rapids-extract-conda-files

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ tarball_dir="$1"
1515
untar_dest=$(mktemp -d)
1616
mkdir -p "${untar_dest}"
1717
cd "${untar_dest}"
18-
find "${tarball_dir}" -name "*tar.bz2" -type f -print0 | xargs -0 -n 1 tar -v -xf
18+
find "${tarball_dir}" \( -name "*.tar.bz2" -o -name "*.conda" \) -type f -print0 | xargs -0 -n 1 cph extract --dest .
1919
} >&2
2020
echo -n "${untar_dest}"

0 commit comments

Comments
 (0)