mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 10:28:09 +01:00
notmuch-mutt: fix Perl syntax of hash index lookups
Fixes: commit 239fdbbbf0
This commit is contained in:
parent
6ea0b18d1e
commit
72de64034d
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ sub check_search_cache_maildir($) {
|
|||
foreach my $d (@contents) {
|
||||
-l "$maildir/$d" and die_dir( $maildir, "contains symlink $d");
|
||||
-d "$maildir/$d" or die_dir( $maildir, "contains non-directory $d");
|
||||
exists($required[$d]) or die_dir( $maildir, "contains directory $d");
|
||||
exists($required{$d}) or die_dir( $maildir, "contains directory $d");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue