From 7ee5a37fc519a052f45e30e7b219eab4ee583948 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Wed, 22 Apr 2026 21:44:02 +0100 Subject: [PATCH] arr-interconnect: add gawk to PATH for idempotency check The quality-floor helper uses awk to compare floats (since jq output can be 10 vs 10.0 depending on type). Without gawk on PATH, the check failed silently and every run issued PUTs even when values already matched. Co-Authored-By: Claude Opus 4.7 --- services/arr-interconnect.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/arr-interconnect.nix b/services/arr-interconnect.nix index 5873875..d6f5c82 100644 --- a/services/arr-interconnect.nix +++ b/services/arr-interconnect.nix @@ -2,7 +2,7 @@ let interconnectScript = pkgs.writeShellScript "arr-interconnect" '' set -euo pipefail - PATH="${lib.makeBinPath [ pkgs.curl pkgs.jq pkgs.gnused pkgs.gnugrep pkgs.coreutils ]}:$PATH" + PATH="${lib.makeBinPath [ pkgs.curl pkgs.jq pkgs.gnused pkgs.gnugrep pkgs.gawk pkgs.coreutils ]}:$PATH" BASE="http://127.0.0.1"