deps: Disbale quiet mode of http_pull
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Sameer Rahmani 2023-02-03 23:58:51 +00:00
parent 23aff71e2a
commit 154ab2573f
Signed by: lxsameer
GPG Key ID: B0A4AF28AB9FD90B
2 changed files with 3 additions and 3 deletions

View File

@ -107,7 +107,7 @@ function pull_toolchain() {
info "Pulling the toolchain version '$version'..."
if [ -f "$LLVM_INSTALL_DIR.zstd" ]; then
error "The package is already in the cache at: '$LLVM_INSTALL_DIR.zstd'"
warn "The package is already in the cache at: '$LLVM_INSTALL_DIR.zstd'"
return
fi
@ -212,7 +212,7 @@ function pull_bdwgc() {
info "Pulling the BDWGC version '$version'..."
if [ -f "$BDWGC_INSTALL_DIR.zstd" ]; then
error "The package is already in the cache at: '$BDWGC_INSTALL_DIR.zstd'"
warn "The package is already in the cache at: '$BDWGC_INSTALL_DIR.zstd'"
return
fi

View File

@ -103,7 +103,7 @@ function http_pull() {
info "Fetching '$url'..."
if curl "$url" --fail --progress-bar -o "$output" 2> /dev/null; then
if curl "$url" --fail --progress-bar -o "$output"; then
return 0
else
return 4