Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Oops in e84ccc8
It was supposed to be a description of a gist, not a file called “description”.
  • Loading branch information
AlexDaniel committed Aug 22, 2016
1 parent 635f61a commit 4d50e7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Bisectable.p6
Expand Up @@ -205,8 +205,8 @@ method process($message, $code is copy, $good, $bad) {
my ($init-output, $init-status) = self.get-output(git, bisect, bad, $full-bad);
if $init-status != 0 {
$message.reply: bisect log: ~ self.upload({ query => $message.text,
description => $message.server.current-nick,
result => $init-output });
result => $init-output, },
description => $message.server.current-nick);
return bisect init failure;
}
my ($bisect-output, $bisect-status);
Expand All @@ -220,8 +220,8 @@ method process($message, $code is copy, $good, $bad) {
}
}
$message.reply: bisect log: ~ self.upload({ query => $message.text,
description => $message.server.current-nick,
result => $init-output\n$bisect-output });
result => $init-output\n$bisect-output, },
description => $message.server.current-nick);

if $bisect-status != 0 {
return ‘bisect run’ failure;
Expand Down

0 comments on commit 4d50e7d

Please sign in to comment.