We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0efd8bb commit 18cc60fCopy full SHA for 18cc60f
src/anaconda/.devcontainer/apply_security_patches.sh
@@ -30,7 +30,7 @@ for ((i=0; i<rows; i++)); do
30
echo "${packages_array[$i,0]} version v${CURRENT_VERSION} installed by the base image is not greater or equal to the required: v${REQUIRED_VERSION}"
31
# Check whether conda channel has a greater or equal version available, so install from conda, otherwise use pip package manager
32
channel_name="anaconda"
33
- CONDA_VERSION=$(conda search --override-channels "${packages_array[$i,0]}" -c "$channel_name" | \
+ CONDA_VERSION=$(conda search "${packages_array[$i,0]}" -c "$channel_name" | \
34
grep -E '^[[:alnum:]]' | \
35
awk '{print $2}' | \
36
sort -V | \
0 commit comments