Skip to content

Commit 4310c29

Browse files
committed
Fix formatting
1 parent 6bae684 commit 4310c29

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

transcrypt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,8 @@ _list_encrypted_files() {
180180

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

0 commit comments

Comments
 (0)