Skip to content

Commit

Permalink
Stop using xargs since it can't find functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
averms committed Jan 17, 2025
1 parent ba5ce00 commit b4b071b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions context/verms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,8 @@ autodnf swap '(ffmpeg-free or libswscale-free or libavformat-free or libavfilter
autodnf swap OpenCL-ICD-Loader ocl-icd

# Host packages
grep -Ev '^#|^$' context/host.txt |
xargs -d '\n' autodnf install
grep -Ev '^#|^$' context/host-no-weak-deps.txt |
xargs -d '\n' autodnf --setopt install_weak_deps=False install
autodnf install $(grep -Ev '^#|^$' context/host.txt)
autodnf --setopt install_weak_deps=False install $(grep -Ev '^#|^$' context/host-no-weak-deps.txt)

# Install google-chrome-stable. Taken from
# https://github.com/travier/fedora-sysexts/blob/047ab6b890/google-chrome/Containerfile
Expand Down

0 comments on commit b4b071b

Please sign in to comment.