File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -5,16 +5,16 @@ set -eo pipefail
5
5
export RAPIDS_SCRIPT_NAME=" rapids-extract-conda-files"
6
6
7
7
if [ -z " $1 " ]; then
8
- rapids-echo-stderr " Must specify input argument: TARBALL_DIR "
8
+ rapids-echo-stderr " Must specify input argument: CONDA_PKG_DIR "
9
9
exit 1
10
10
fi
11
11
12
- # dir that the extracted tarball are in
13
- tarball_dir =" $1 "
12
+ # dir that the extracted conda packages are in
13
+ conda_pkg_dir =" $1 "
14
14
{
15
- untar_dest =$( mktemp -d)
16
- mkdir -p " ${untar_dest } "
17
- cd " ${untar_dest } "
18
- find " ${tarball_dir } " \( -name " *.tar.bz2" -o -name " *.conda" \) -type f -print0 | xargs -0 -n 1 cph extract --dest .
15
+ conda_pkg_dest =$( mktemp -d)
16
+ mkdir -p " ${conda_pkg_dest } "
17
+ cd " ${conda_pkg_dest } "
18
+ find " ${conda_pkg_dir } " \( -name " *.tar.bz2" -o -name " *.conda" \) -type f -print0 | xargs -0 -n 1 cph extract --dest .
19
19
} >&2
20
- echo -n " ${untar_dest } "
20
+ echo -n " ${conda_pkg_dest } "
You can’t perform that action at this time.
0 commit comments