We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bae684 commit 4310c29Copy full SHA for 4310c29
transcrypt
@@ -180,9 +180,8 @@ _list_encrypted_files() {
180
181
# Only output names of encrypted files matching the context, either
182
# 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
+ if [[ "$strict_context" == "true" ]] &&
+ [[ "$check" == *": filter: crypt${CONTEXT_CRYPT_SUFFIX:-}" ]]; then
186
echo "$file"
187
elif [[ "$check" == *": filter: crypt${CONTEXT_CRYPT_SUFFIX:-}"* ]]; then
188
0 commit comments