From 4f318516389444054791920017c5e3e29bfb2c1c Mon Sep 17 00:00:00 2001 From: Yueh-Shun Li Date: Thu, 3 Aug 2023 07:57:02 +0800 Subject: [PATCH] xrootd.fetchxrd: show progress bar with --verbose Show the progress bar and other information during the download. Provide a way to distinguish connection interrupt from authentication failure. --- pkgs/tools/networking/xrootd/fetchxrd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/xrootd/fetchxrd.nix b/pkgs/tools/networking/xrootd/fetchxrd.nix index c5ec8f02e783..5bad585186ac 100644 --- a/pkgs/tools/networking/xrootd/fetchxrd.nix +++ b/pkgs/tools/networking/xrootd/fetchxrd.nix @@ -23,7 +23,7 @@ } '' for u in $urls; do - xrdcp --force "$u" "$out" + xrdcp --verbose --force "$u" "$out" ret=$? (( ret != 0 )) || break done