Skip to content

Commit 89f2726

Browse files
committed
Fix downloading package
1 parent ee88632 commit 89f2726

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ node_modules
33
*.secret.*
44
gen
55
.env
6-
scripts/archive.synology.com/
6+
archive.synology.com
7+
global.download.synology.com
78
npm-debug.log
89
tmp

scripts/download_spk.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,10 @@ for pkg in ${PACKAGES[@]}; do
1212
done
1313
done
1414

15-
wget --execute="robots = off" --mirror --convert-links --no-parent --accept $str https://archive.synology.com/download/Package/spk
15+
wget --execute="robots = off" --mirror --convert-links --no-parent --accept $str https://archive.synology.com/download/Package
16+
17+
for f in $(find archive.synology.com/download/Package)
18+
do
19+
url=`sed -n 's/.*href="\([^"]*.spk\).*/\1/p' $f`
20+
wget --execute="robots = off" --mirror "$url"
21+
done

0 commit comments

Comments
 (0)