Skip to content

Commit

Permalink
fix whitespace splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles committed Mar 1, 2025
1 parent b100f6c commit e59fd75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nvidia-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ if [[ "$(rpm -E %fedora)" -lt 41 ]]; then
)
fi

dnf5 versionlock add "${VERSIONLOCK[*]}"
dnf5 versionlock add "${VERSIONLOCK[@]}"

dnf5 install -y \
libnvidia-fbc \
Expand All @@ -82,7 +82,7 @@ dnf5 install -y \
nvidia-driver-cuda-libs.i686 \
nvidia-driver-libs.i686 \
nvidia-settings \
nvidia-container-toolkit "${VARIANT_PKGS}" \
nvidia-container-toolkit ${VARIANT_PKGS} \
/tmp/akmods-rpms/kmods/kmod-nvidia-"${KERNEL_VERSION}"-"${NVIDIA_AKMOD_VERSION}".fc"${RELEASE}".rpm

## nvidia post-install steps
Expand Down Expand Up @@ -113,7 +113,7 @@ if [[ "${IMAGE_NAME}" == "sericea" ]]; then
fi

# Disable VersionLock
dnf5 versionlock delete "${VERSIONLOCK[*]}"
dnf5 versionlock delete "${VERSIONLOCK[@]}"

# re-enable negativo17-mutlimedia since we disabled it
if [[ "${NEGATIVO17_MULT_PREV_ENABLED}" = "Y" ]]; then
Expand Down

0 comments on commit e59fd75

Please sign in to comment.