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 dbec0b0 commit 6bae684Copy full SHA for 6bae684
transcrypt
@@ -181,10 +181,10 @@ _list_encrypted_files() {
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" == "${file}: filter: crypt${CONTEXT_CRYPT_SUFFIX:-}" ]]
+ [[ "$check" == *": filter: crypt${CONTEXT_CRYPT_SUFFIX:-}" ]]
185
then
186
echo "$file"
187
- elif [[ "$check" == "${file}: filter: crypt${CONTEXT_CRYPT_SUFFIX:-}"* ]]; then
+ elif [[ "$check" == *": filter: crypt${CONTEXT_CRYPT_SUFFIX:-}"* ]]; then
188
189
fi
190
done
0 commit comments