summaryrefslogtreecommitdiff
path: root/lib/MaildirIndexer/ScanDir.rakumod
diff options
context:
space:
mode:
Diffstat (limited to 'lib/MaildirIndexer/ScanDir.rakumod')
-rw-r--r--lib/MaildirIndexer/ScanDir.rakumod8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/MaildirIndexer/ScanDir.rakumod b/lib/MaildirIndexer/ScanDir.rakumod
index c45d787..e909d58 100644
--- a/lib/MaildirIndexer/ScanDir.rakumod
+++ b/lib/MaildirIndexer/ScanDir.rakumod
@@ -3,7 +3,7 @@ unit module MaildirIndexer::ScanDir;
class End {};
-sub scan-dir(IO() $path --> Supply) is export {
+sub scan-dir(@paths --> Supply) is export {
supply {
my %watched-dirs;
@@ -24,8 +24,8 @@ sub scan-dir(IO() $path --> Supply) is export {
}
}
- sub add-dir(IO::Path $dir) {
- my @todo = $dir;
+ sub add-dir(IO::Path @dirs) {
+ my (@todo) = @dirs;
while @todo {
my $next = @todo.shift;
@@ -46,7 +46,7 @@ sub scan-dir(IO() $path --> Supply) is export {
}
- add-dir($path);
+ add-dir(Array[IO::Path].new(@paths».IO));
emit End;
}
}