Skip to content

Instantly share code, notes, and snippets.

@AlexDaniel
Last active September 19, 2018 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexDaniel/92f8209e40a86855825328f58b8eab80 to your computer and use it in GitHub Desktop.
Save AlexDaniel/92f8209e40a86855825328f58b8eab80 to your computer and use it in GitHub Desktop.
my $p = shell(:out, :err, :cwd(‘sandbox/’), ‘rm -rf oddmuse6;
git clone https://alexschroeder.ch/cgit/oddmuse6;
cd oddmuse6; PERL6LIB=lib/,inst#../oddmuse6-deps prove --exec=perl6 t;
echo >> lib/Save.pm6;
PERL6LIB=lib/,inst#../oddmuse6-deps prove --exec=perl6 t’);
my $out = $p.out.slurp-rest ~ $p.err.slurp-rest;
say $out;
exit 42 if $out.contains: ‘(NQPMu)’;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment