Skip to content

Commit 60ebbcc

Browse files
committed
Add short aliases for all the bots
1 parent 0f85603 commit 60ebbcc

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Benchable.p6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,6 @@ Z: loop (my int $x = 0; $x < +@commits - 1; $x++) {
180180
return ($msg-response, %graph);
181181
}
182182

183-
Benchable.new.selfrun(benchable6);
183+
Benchable.new.selfrun(benchable6, [bench]);
184184

185185
# vim: expandtab shiftwidth=4 ft=perl6

Bisectable.p6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,6 @@ method process($message, $code is copy, $good, $bad) {
148148
return $result;
149149
}
150150

151-
Bisectable.new.selfrun(bisectable6);
151+
Bisectable.new.selfrun(bisectable6, [bisect]);
152152

153153
# vim: expandtab shiftwidth=4 ft=perl6

Committable.p6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,6 @@ method process($message, $config, $code is copy) {
105105
return $msg-response;
106106
}
107107

108-
Committable.new.selfrun(committable6);
108+
Committable.new.selfrun(committable6, [commit]);
109109

110110
# vim: expandtab shiftwidth=4 ft=perl6

Whateverable.pm6

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,13 @@ method upload(%files is copy, :$description = ‘’, Bool :$public = True) {
148148
return $gist.paste(%files, desc => $description, public => $public);
149149
}
150150

151-
method selfrun($nick is copy) {
151+
method selfrun($nick is copy, @alias?) {
152152
$nick ~= test if %*ENV<DEBUGGABLE>;
153153
.run with IRC::Client.new(
154154
:$nick
155155
:userreal($nick.tc)
156156
:username($nick.tc)
157+
:@alias
157158
:host<irc.freenode.net>
158159
:channels(%*ENV<DEBUGGABLE> ?? <#whateverable> !! <#perl6 #perl6-dev #whateverable>)
159160
:debug(?%*ENV<DEBUGGABLE>)

0 commit comments

Comments
 (0)