Skip to content

Commit

Permalink
Update akmods.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftydinar authored Oct 1, 2024
1 parent 9552dc6 commit 1a0bfe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/akmods/akmods.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ readonly -f SET_HIGHER_PRIORITY_AKMODS_REPO

get_yaml_array INSTALL '.install[]' "$1"

readonly INSTALL_STR=(echo "/tmp/rpms/kmods/*${INSTALL[@]}*.rpm" | tr -d '\n')
readonly INSTALL_STR=("/tmp/rpms/kmods/*${INSTALL[@]}*.rpm")

if [[ ${#INSTALL[@]} -gt 0 ]]; then
echo "Installing akmods"
echo "Installing: $(echo "${INSTALL[*]}" | tr -d '\n')"
echo "Installing: ${INSTALL[*]}"
SET_HIGHER_PRIORITY_AKMODS_REPO
ENABLE_MULTIMEDIA_REPO
rpm-ostree install ${INSTALL_STR}
Expand Down

0 comments on commit 1a0bfe7

Please sign in to comment.