Skip to content

Commit f6c262b

Browse files
authored
fix(ci): revert method of finding conda packages to upload (#144)
1 parent 6fe4ab9 commit f6c262b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ci/publish/conda.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -euo pipefail
1010
. /usr/share/miniconda/etc/profile.d/conda.sh
1111
conda activate base
1212
conda install -y anaconda-client
13-
readarray -d '' pkgs_to_upload < <(find "${CONDA_OUTPUT_DIR}" -name "*.conda" -o -name "*.tar.bz2")
13+
pkgs_to_upload=$(find "${CONDA_OUTPUT_DIR}" -name "*.conda" -o -name "*.tar.bz2")
1414

1515
export CONDA_ORG="${1}"
1616

@@ -27,7 +27,6 @@ set -euo pipefail
2727
;;
2828
esac
2929

30-
3130
anaconda \
3231
-t "${TOKEN}" \
3332
upload \

0 commit comments

Comments
 (0)