浏览代码

New generic install method

bryan 2 年之前
父节点
当前提交
144c4e3bad
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      installJRMC

+ 3 - 3
installJRMC

@@ -865,11 +865,11 @@ installMCGENERIC() {
 
     declare extract_dir && extract_dir="$(mktemp -d)"
     pushd "$extract_dir" &>/dev/null || return
-    execute ar x "$MCDEB"
-    execute tar xvf "control.tar.xz"
+    ar x "$MCDEB" &>/dev/null
+    tar xvf "control.tar.xz" &>/dev/null
     echo "You must install the following dependencies manually:"
     grep -i "Depends:" control
-    execute tar xvf "data.tar.xz"
+    tar xvf "data.tar.xz" &>/dev/null
     # List of files to install
     raw_files=("$(find etc/ usr/ -mindepth 1 -type f)")
     debug "raw_files=(${raw_files[*]})"