summarylogtreecommitdiffstats
path: root/start.sh
diff options
context:
space:
mode:
authorplokid2023-02-15 19:50:38 +0800
committerplokid2023-02-15 19:50:38 +0800
commita010aa69b283b9213518cb1e5d2033f79999176e (patch)
tree4db6655ac39890396eb79d36359b8169f1f91bf6 /start.sh
parent9f78bedf6e90e8dc524f0df458a05aeb0dc55929 (diff)
downloadaur-accelerate-cn.tar.gz
8线程改为16线程,规整格式
Diffstat (limited to 'start.sh')
-rwxr-xr-xstart.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/start.sh b/start.sh
index 00f6859f3237..32873adb67d9 100755
--- a/start.sh
+++ b/start.sh
@@ -7,10 +7,10 @@ case "$domin" in
"github.com")
url="https://ghproxy.com/https://github.com/"$others;
echo "download from github mirror $url";
- /usr/bin/aria2c -x 16 -s 8 -k 1M -o $1 $url;
+ /usr/bin/aria2c -x 16 -s 16 -k 1M -o $1 $url;
;;
*)
url=$2;
- /usr/bin/aria2c -x 16 -s 8 -k 1M -o $1 $url;
+ /usr/bin/aria2c -x 16 -s 16 -k 1M -o $1 $url;
;;
esac