Skip to content

Commit

Permalink
Merge pull request #41 from oluceps/fix-grep-result
Browse files Browse the repository at this point in the history
Revert #40 and disable SC2043 shellcheck
  • Loading branch information
oddlama authored Sep 15, 2024
2 parents 10ea05a + b15db59 commit 524425f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions nix/lib.nix
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,13 @@
# For master identies with no explicit pubkey, try extracting a pubkey from the file first.
# Collect final identity arguments for encryption in an array.
masterIdentityArgs=()
masterIdentityArray=(${
# shellcheck disable=SC2041,SC2043
for file in ${
concatStringsSep " "
(map
(x: ''"${escapeShellArg x.identity}"'')
(x: "${escapeShellArg x.identity}")
(filter (x: x.pubkey == null) mergedMasterIdentities))
})
# shellcheck disable=SC2041
for file in "''${masterIdentityArray[@]}"; do
}; do
# Keep track if a file was processed.
file_processed=false
Expand Down

0 comments on commit 524425f

Please sign in to comment.