From b4b071be30ee2f51dd3af923433f0a45572fa921 Mon Sep 17 00:00:00 2001 From: Aman Verma Date: Thu, 16 Jan 2025 18:47:30 -0600 Subject: [PATCH] Stop using xargs since it can't find functions. --- context/verms.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/context/verms.sh b/context/verms.sh index fd1e194..f04e706 100644 --- a/context/verms.sh +++ b/context/verms.sh @@ -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