mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-04 02:12:21 +08:00
* 3.2.4~test3 * 修改: debian/changelog * !125 fix: 对oss进行URL转译 * Merge remote-tracking branch 'upstream/dev' into dev * fix: 对oss进行URL转译 * !124 fix: 安装时可能出现的超时错误 * update debian/changelog. * update src/widget.cpp. * Merge remote-tracking branch 'upstream/dev' into dev * update debian/changelog. * Merge remote-tracking branch 'upstream/dev' into dev * fix: 超时错误 * update README.zh.md. * update README.md. * update README.zh.md. * update debian/changelog. * !123 feat: 投稿器 * feat: 投稿器 * !122 fix:gpu 参数 * fix: chrome GPU 参数 * Merge remote-tracking branch 'upstream/dev' into dev * 修复错误的配置文件 * 改为读取/etc * update debian/changelog. * UOS 走普通的aptss,aptss支持UOS源 * 更新时不再清除免密码安装设置 * !121 反向同步 * fix * Merge remote-tracking branch 'upstream/dev' into dev * fix: high CPU usage because futex is still waiting for queue after illegal exit * Merge remote-tracking branch 'upstream/master' into dev * Merge remote-tracking branch 'upstream/dev' into dev * feat: enable GPU * Merge remote-tracking branch 'upstream/dev' into dev * Merge branch 'dev' of gitee.com:uniartisan2018/spark-store into dev * feat: 清除网页缓存 * 文案修改 * update src/widget.ui. * feat: 星火应用商店检测更新
24 lines
784 B
Bash
Executable File
24 lines
784 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "以上可升级,是否升级?[y/n]"
|
|
read yes_or_no
|
|
if [ "$yes_or_no" = "y" ];then ###这是确定是否同意
|
|
|
|
echo "获取更新列表..."
|
|
PKG_LIST="$(bwrap --dev-bind / / --bind '/opt/durapps/spark-store/bin/apt-fast-conf/sources.list.d/sparkstore.list' /etc/apt/sources.list.d/sparkstore.list apt list --upgradable -o Dir::Etc::sourcelist="sources.list.d/sparkstore.list" -o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0" | awk 'BEGIN {FS="/"} {print $1}' | awk NR\>1)"
|
|
|
|
|
|
for PKG_NAME in $PKG_LIST;
|
|
do
|
|
echo "$PKG_NAME 正在更新..."
|
|
if sudo aptss install "$PKG_NAME" -y >/dev/null 2>&1;
|
|
then
|
|
echo "$PKG_NAME 已更新"
|
|
else
|
|
echo "WARNING: $PKG_NAME 无法更新"
|
|
fi
|
|
done
|
|
|
|
|
|
|
|
fi ###这是确定是否同意 |