From 758cdc98f49ba72f4e941933575db8a70f24cfe3 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Fri, 12 May 2023 11:01:22 +0200 Subject: [PATCH] Disable shellcheck warning about impossible comparison This shellcheck warning occurs when setting a path for a secret using the home-manager module. Signed-off-by: Sefa Eyeoglu --- modules/age-home.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/age-home.nix b/modules/age-home.nix index 86bfbe0..c3209ab 100644 --- a/modules/age-home.nix +++ b/modules/age-home.nix @@ -48,6 +48,7 @@ with lib; let test "''${#IDENTITIES[@]}" -eq 0 && echo "[agenix] WARNING: no readable identities found!" mkdir -p "$(dirname "$_truePath")" + # shellcheck disable=SC2193 [ "${secretType.path}" != "${cfg.secretsDir}/${secretType.name}" ] && mkdir -p "$(dirname "${secretType.path}")" ( umask u=r,g=,o= @@ -59,6 +60,7 @@ with lib; let mv -f "$TMP_FILE" "$_truePath" ${optionalString secretType.symlink '' + # shellcheck disable=SC2193 [ "${secretType.path}" != "${cfg.secretsDir}/${secretType.name}" ] && ln -sfn "${cfg.secretsDir}/${secretType.name}" "${secretType.path}" ''} '';