Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurty committed Oct 25, 2023
1 parent 6bae684 commit 4310c29
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions transcrypt
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,8 @@ _list_encrypted_files() {

# Only output names of encrypted files matching the context, either
# strictly (if $1 = "true") or loosely (if $1 is false or unset)
if [[ "$strict_context" == "true" ]] && \
[[ "$check" == *": filter: crypt${CONTEXT_CRYPT_SUFFIX:-}" ]]
then
if [[ "$strict_context" == "true" ]] &&
[[ "$check" == *": filter: crypt${CONTEXT_CRYPT_SUFFIX:-}" ]]; then
echo "$file"
elif [[ "$check" == *": filter: crypt${CONTEXT_CRYPT_SUFFIX:-}"* ]]; then
echo "$file"
Expand Down

0 comments on commit 4310c29

Please sign in to comment.