Skip to content

Commit 1073117

Browse files
committed
fixed quotes and reduced noise on stdout
1 parent 49872f1 commit 1073117

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dask/dask.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1123,7 +1123,7 @@ function install_dask() {
11231123
# the libuuid.so.1 distributed with fiona 1.8.22 dumps core when calling uuid_generate_time_generic
11241124
CONDA_PACKAGES+=("fiona<1.8.22")
11251125
fi
1126-
CONDA_PACKAGES+=('dask-yarn=${dask_yarn_version}' "distributed<2022.2")
1126+
CONDA_PACKAGES+=("dask-yarn=${dask_yarn_version}" "distributed<2022.2")
11271127
fi
11281128

11291129
CONDA_PACKAGES+=(
@@ -1235,7 +1235,7 @@ function install_conda_packages() {
12351235
is_installed="1"
12361236
pushd "${DASK_CONDA_ENV}"
12371237
time ( set -e
1238-
tar czf "${local_tarball}" . && tar tzf "${local_tarball}"
1238+
tar czf "${local_tarball}" . && tar tzf "${local_tarball}" > /dev/null
12391239
gcloud storage cp "${local_tarball}" "${gcs_tarball}"
12401240
rm "${local_tarball}"
12411241
)

0 commit comments

Comments
 (0)