1 parent 6044b12 commit bdbf145Copy full SHA for bdbf145
1 file changed
.github/workflows/build-docker.yml
@@ -70,11 +70,11 @@ jobs:
70
- name: check getmonero webseed + versioned hashes file
71
run: |
72
CDN_URL="https://downloads.getmonero.org"
73
- if ! wget --spider "$CDN_URL/hashes-$VERSION"; then
+ if ! wget --spider -q "$CDN_URL/hashes-$VERSION"; then
74
echo "Webseed FAILED: hashes-$VERSION"
75
#exit 1
76
fi
77
- if ! wget --spider "$CDN_URL/hashes-$VERSION_GUI"; then
+ if ! wget --spider -q "$CDN_URL/hashes-$VERSION_GUI"; then
78
echo "Webseed FAILED: hashes-$VERSION_GUI"
79
80
@@ -87,7 +87,7 @@ jobs:
87
part="monero-gui-$VERSION_GUI"
88
89
url=$CDN_URL/${part}/${dir}/${file}
90
- if ! wget --spider "$url"; then
+ if ! wget --spider -q "$url"; then
91
echo "Webseed FAILED: $url"
92
93
else
0 commit comments