File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -70,24 +70,23 @@ jobs:
7070 - name : check getmonero webseed + versioned hashes file
7171 run : |
7272 CDN_URL="https://downloads.getmonero.org"
73- if ! wget --spider "$CDN_URL/hashes-$VERSION"; then
73+ if ! wget --spider -q "$CDN_URL/hashes-$VERSION"; then
7474 echo "Webseed FAILED: hashes-$VERSION"
7575 #exit 1
7676 fi
77- if ! wget --spider "$CDN_URL/hashes-$VERSION_GUI"; then
77+ if ! wget --spider -q "$CDN_URL/hashes-$VERSION_GUI"; then
7878 echo "Webseed FAILED: hashes-$VERSION_GUI"
7979 #exit 1
8080 fi
8181 for file in $(awk '/monero-/ {print $2}' "hashes.txt"); do
8282 dir=cli
8383 part="monero-$VERSION"
84- echo $file
8584 if [[ $file =~ gui ]]; then
8685 dir=gui
8786 part="monero-gui-$VERSION_GUI"
8887 fi
8988 url=$CDN_URL/${part}/${dir}/${file}
90- if ! wget --spider "$url"; then
89+ if ! wget --spider -q "$url"; then
9190 echo "Webseed FAILED: $url"
9291 #exit 1
9392 else
You can’t perform that action at this time.
0 commit comments