浏览代码

only install packages if we must

tags/v1.4.28
Jonathan Cobb 3 年前
父节点
当前提交
1622dc0add
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      bin/ubuntu_connect_bubble

+ 3
- 3
bin/ubuntu_connect_bubble 查看文件

@@ -90,10 +90,10 @@ The following apt packages will be installed:

Press Enter to continue with installation, or Control-C to exit"
read -r DUMMY || die "Bubble connection canceled"
fi

# Do not quote INSTALL_PACKAGES, we want to install all packages...
sudo apt update && sudo apt install -y ${INSTALL_PACKAGES} || die "Error installing packages: ${INSTALL_PACKAGES}"
# Do not quote INSTALL_PACKAGES, we want to install all packages...
sudo apt update && sudo apt install -y ${INSTALL_PACKAGES} || die "Error installing packages: ${INSTALL_PACKAGES}"
fi

ARG_HOST="${1}"
if [[ -z "${ARG_HOST}" ]] ; then


正在加载...
取消
保存