mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-02 17:32:25 +08:00
14 lines
315 B
Bash
Executable File
14 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "以上可升级,是否升级?[y/n]"
|
|
read yes_or_no
|
|
if [ "$yes_or_no" = "y" ];then
|
|
mkdir -p /tmp/ss-apt-fast-conf/sources.list.d
|
|
|
|
|
|
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 |