Skip to content

Commit

Permalink
run-tests: show curl error messages
Browse files Browse the repository at this point in the history
Stop suppressing error output from curl.
  • Loading branch information
lmb committed Jul 19, 2022
1 parent d560e44 commit 1db0160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-tests.sh
Expand Up @@ -111,7 +111,7 @@ readonly branch="${BRANCH:-master}"
fetch() {
echo Fetching "${1}"
pushd "${tmp_dir}" > /dev/null
curl -s -L -O --fail --etag-compare "${1}.etag" --etag-save "${1}.etag" "https://github.com/cilium/ci-kernels/raw/${branch}/${1}"
curl --no-progress-meter -L -O --fail --etag-compare "${1}.etag" --etag-save "${1}.etag" "https://github.com/cilium/ci-kernels/raw/${branch}/${1}"
local ret=$?
popd > /dev/null
return $ret
Expand Down

0 comments on commit 1db0160

Please sign in to comment.