From 9d8e338872a86f1a4c18a6ade084ac7492d9f213 Mon Sep 17 00:00:00 2001 From: bryan Date: Fri, 11 Jul 2025 19:50:01 -0400 Subject: [PATCH] Make package scrape prettier --- installJRMC | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/installJRMC b/installJRMC index 7838737..4a9a90e 100755 --- a/installJRMC +++ b/installJRMC @@ -753,13 +753,15 @@ acquire_deb() { "https://files.jriver-cdn.com/mediacenter/test/$fname") # Loop through the repositories and attempt to download + echo "Checking MC repos for DEB package" for repo in "${repos[@]}"; do - echo "Checking $repo for DEB package" + echo -n "$repo --> " if download "$repo" "$MC_DEB"; then - echo "Found" + echo "Found!" MC_SOURCE="$repo" break fi + echo "Not found" done fi