mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-02 17:32:25 +08:00
* 修复 多位数无法显示 * modified: tool/update-upgrade/ss-do-upgrade.sh * modified: tool/update-upgrade/ss-do-upgrade.sh * 更改依赖判断方法 * modified: debian/changelog * * 新增:ssinstall现在会在没有apt-fast的时候自动安装
9 lines
265 B
Bash
Executable File
9 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "以上可升级,是否升级?[y/n]"
|
|
read yes_or_no
|
|
if [ "$yes_or_no" = "y" ];then
|
|
sudo ss-apt-fast upgrade -y -o Dir::Etc::sourcelist="sources.list.d/sparkstore.list" -o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0"
|
|
else
|
|
exit
|
|
fi |