表格支持自动调整行宽

This commit is contained in:
2024-05-12 09:09:02 +08:00
parent 90c04767ad
commit 20130363fb
8 changed files with 58 additions and 4 deletions

View File

@@ -1,6 +1,12 @@
#!/bin/bash
set -e
rm /tmp/gxde-kernel-manager-installer-status -f
apt update
apt install ${KernelList} -y
aptPath="apt"
which aptss > /dev/null
if [[ $? == 0 ]]; then
# 如果 aptss 存在,则使用 aptss
aptPath="aptss"
fi
$aptPath update
$aptPath install ${KernelList} -y
rm -f "${kernelInstallerShellTempPath}"