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 8e3bb90 commit e7a5b49Copy full SHA for e7a5b49
lib/Pod/To/Cached.pm6
@@ -1,6 +1,5 @@
1
unit class Pod::To::Cached;
2
3
-use File::Directory::Tree;
4
use nqp;
5
use JSON::Fast;
6
use CompUnit::PrecompilationRepository::Document;
@@ -63,7 +62,7 @@ submethod TWEAK {
63
62
$!frozen = False;
64
die "Source verification failed with:\n" ~ @!error-messages.join("\n\t")
65
unless self.verify-source;
66
- mktree $!path;
+ mkdir IO::Path.new( $!path );
67
self.save-index;
68
}
69
my $precomp-store = CompUnit::PrecompilationStore::File.new(prefix => $!path.IO );
0 commit comments