We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7cd0cb commit cda3ac8Copy full SHA for cda3ac8
scripts/dev/downloader.sh
@@ -26,13 +26,13 @@ downloader() {
26
wget2 -q $@;
27
elif command -v curl 2>/dev/null; then
28
for PKG in $@; do
29
- if [[-z "$PKG"]]; then
+ if [[ -z "$PKG" ]]; then
30
curl -LO --retry 20 -s $PKG
31
fi
32
done
33
else
34
35
36
wget -q $PKG@ 2> /dev/null
37
38
@@ -43,13 +43,13 @@ downloader() {
43
elif
44
command -v curl 2>/dev/null; then
45
46
47
curl -L --retry 20 --progress-bar -O $PKG
48
49
50
51
52
53
wget $PKG 2> /dev/null
54
55
0 commit comments