Skip to content

Commit

Permalink
consider .conda files in rapids-extract-conda-files (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb authored Oct 15, 2024
1 parent c777738 commit 15edc0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/rapids-extract-conda-files
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ tarball_dir="$1"
untar_dest=$(mktemp -d)
mkdir -p "${untar_dest}"
cd "${untar_dest}"
find "${tarball_dir}" -name "*tar.bz2" -type f -print0 | xargs -0 -n 1 tar -v -xf
find "${tarball_dir}" \( -name "*.tar.bz2" -o -name "*.conda" \) -type f -print0 | xargs -0 -n 1 cph extract --dest .
} >&2
echo -n "${untar_dest}"

0 comments on commit 15edc0e

Please sign in to comment.