From 8d1f4d51d027c0e16a1cd784f63eb72da4a13eec Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Sun, 8 Feb 2026 21:17:00 +0000 Subject: [PATCH] nixos/deploy-rs: Fix systemd-util shellcheck --- nixos/modules/deploy-rs.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/deploy-rs.nix b/nixos/modules/deploy-rs.nix index 9a90f39..ffbed59 100644 --- a/nixos/modules/deploy-rs.nix +++ b/nixos/modules/deploy-rs.nix @@ -45,8 +45,9 @@ let journalctl -o cat --no-pager -n 0 -f -u "$unit" & jPid=$! + + # shellcheck disable=SC2329 cleanup() { - # shellcheck disable=SC2317 kill "$jPid" } trap cleanup EXIT