Install distribution to repository
sub install-dist(IO() :$dist-path!, IO() :$repo-path! --> Nil) {
my $repo-spec := “inst#$repo-path”;
my $dist = Distribution::Path.new($dist-path);
my $repo = CompUnit::RepositoryRegistry.repository-for-spec($repo-spec);
$repo.install($dist);
}
INFO