Browse Source

Chown deb to _apt

bryan 2 days ago
parent
commit
b960867a0a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      installJRMC

+ 1 - 1
installJRMC

@@ -715,7 +715,7 @@ acquire_deb() {
   mnt="$(sudo buildah mount "$CNT")" &&
   execute sudo find "$mnt/tmp" -maxdepth 1 -type f -name "*.deb" -exec cp {} "$MC_DEB" \; &&
   [[ -f $MC_DEB ]] &&
-  execute sudo chown "$USER:$USER" "$MC_DEB" &&
+  execute sudo chown "_apt:$USER" "$MC_DEB" &&
   execute sudo buildah umount "$CNT" &&
   execute sudo buildah rm "$CNT" &&
   MC_SOURCE="https://files.jriver-cdn.com/mediacenter/channels/v$MC_MVERSION/latest/$fname"; }; then