Skip to content

Commit 3143cef

Browse files
committed
MSG CHANGE
1 parent 11ece68 commit 3143cef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/anaconda/.devcontainer/install_vulnerable_packages.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ for ((i=0; i<rows; i++)); do
8080
fi
8181
comparison_result2=$(compare_semver "${REQUIRED_VERSION}" "${CONDA_VERSION}")
8282
if [[ $comparison_result2 == "lesser" ]] || [[ $comparison_result2 == "equal" ]]; then
83-
echo -e "Greater version between required version: v${REQUIRED_VERSION} and conda version: v${CONDA_VERSION} is conda version: v${CONDA_VERSION}\n";
83+
echo -e "Conda Version: ${CONDA_VERSION} is greater than or equal to the required version: ${REQUIRED_VERSION}. \n";
8484
echo "Installing ${packages_array[$i,0]} from source from conda channel for ${REQUIRED_VERSION}..."
8585
conda install "${packages_array[$i,0]}==${CONDA_VERSION}"
8686
else
87-
echo -e "Greater version between required version: v${REQUIRED_VERSION} and conda version: v${CONDA_VERSION} is the required version: v${REQUIRED_VERSION}\n";
87+
echo -e "Required version: ${REQUIRED_VERSION} is greater than the conda version: ${CONDA_VERSION}. \n";
8888
echo "Installing ${packages_array[$i,0]} from source from pip package manager for ${REQUIRED_VERSION}..."
8989
python3 -m pip install --upgrade "${packages_array[$i,0]}==${REQUIRED_VERSION}"
9090
fi

0 commit comments

Comments
 (0)