Skip to content

Commit

Permalink
build need return True
Browse files Browse the repository at this point in the history
  • Loading branch information
araraloren committed Jun 2, 2018
1 parent f46825d commit d0d0ee3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Build.pm
Expand Up @@ -10,7 +10,9 @@ class Build {

$dest.mkdir unless $dest.e;
for $config-dir.IO.dir() {
note "copy {.basename} to {$dest.path}";
.copy($dest.add(.basename));
}
True; # seems like we need return True to `zef`
}
}
}

0 comments on commit d0d0ee3

Please sign in to comment.