From 0f63164eabaed1b0dc10ca2f9384db7b4bcc5d9c Mon Sep 17 00:00:00 2001 From: amyavi <144570677+amyavi@users.noreply.github.com> Date: Wed, 12 Mar 2025 20:08:55 -0300 Subject: [PATCH] fix: pass fetch output directly to jq --- scripts/_sources/_bibliothek.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/_sources/_bibliothek.sh b/scripts/_sources/_bibliothek.sh index 20be5f1..a264829 100644 --- a/scripts/_sources/_bibliothek.sh +++ b/scripts/_sources/_bibliothek.sh @@ -4,16 +4,14 @@ _fetch_latest_build() { builds_url="$1/builds" - debug "fetch: $builds_url" - BUILD_JSON="$(fetch -so- "$builds_url")" # We have to read the variables like this because POSIX read # doesn't support reading multiple variables at a time for var in LATEST_BUILD LATEST_BUILD_FILENAME; do read -r "${var?}" done <