Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Add support for custom scripts
So that users can bisect arbitrary code. The code can depend on modules, in which case these have to be listed on the command line (e.g. for a script depending on WWW you should list WWW module, dependencies will be detected automatically). Using this ticket as an example: rakudo/rakudo#2779 Create file foo.p6 with this content: use WWW; my @StationS; @StationS = | jpost "https://www.perl6.org", :limit(42); Then run Blin: ./bin/blin.p6 --old=2018.12 --new=HEAD --custom-script=foo.p6 WWW Then check out the output folder to see the results. Resolves #11.
- Loading branch information
1 parent
80417a8
commit 6da7c3c
Showing
3 changed files
with
42 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters