Skip to content

Commit

Permalink
fix quotes here
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Nov 9, 2024
1 parent f44e55e commit ce6ba8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions constructor/header.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fi
int_min_glibc_version="$(printf "%02d%02d%02d" $(echo "$min_glibc_version" | sed 's/\./ /g'))"
# shellcheck disable=SC2183 disable=SC2046
int_system_glibc_version="$(printf "%02d%02d%02d" $(echo "$system_glibc_version" | sed 's/\./ /g'))"
if [ "$int_system_glibc_version" -lt "$int_min_glibc_version" ]; then
if [ "$int_system_glibc_version" -lt "$int_min_glibc_version" ]; then
echo "Installer requires GLIBC >=${min_glibc_version}, but system has ${system_glibc_version}."
exit 1
fi
Expand Down Expand Up @@ -482,7 +482,7 @@ mkdir -p "$TMP"
# but we haven't created $PREFIX/pkgs yet... give it a temp location
# shellcheck disable=SC2050
if [ "__VIRTUAL_SPECS__" != "" ]; then
echo 'Checking virtual specs compatibility: __VIRTUAL_SPECS__'
echo "Checking virtual specs compatibility:" __VIRTUAL_SPECS__
CONDA_QUIET="$BATCH" \
CONDA_SOLVER="classic" \
CONDA_PKGS_DIRS="$(mktemp -d)" \
Expand Down

0 comments on commit ce6ba8a

Please sign in to comment.