From 4204817042daabc5df45491f6988e99419cc847e Mon Sep 17 00:00:00 2001 From: bryan Date: Thu, 24 Apr 2025 12:08:08 -0400 Subject: [PATCH] Replace buildah copy with mount --- installJRMC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installJRMC b/installJRMC index 1f188ed..540b575 100755 --- a/installJRMC +++ b/installJRMC @@ -774,7 +774,7 @@ acquire_deb_new() { apt_mc_container && execute sudo buildah run "$CNT" -- sh -c " apt-get download --allow-unauthenticated mediacenter$MC_MVERSION" && - execute mnt="$(sudo buildah mount "$CNT")" + mnt="$(sudo buildah mount "$CNT")" execute sudo cp "$mnt"/*.deb "$MC_DEB" && execute sudo buildah umount "$CNT" && execute sudo buildah rm "$CNT"