Skip to content

Commit

Permalink
✅ Realmente closes #266
Browse files Browse the repository at this point in the history
Cortando los nicks que tenían algún error
  • Loading branch information
JJ committed Sep 18, 2023
1 parent d76171a commit 411c3d5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/convierte-nicks.raku
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ my %nick-github-de;
for @lines[1..*] -> $l {
next if $l[0] !~~ /^^\w/;
next if !$l[1];
%nick-github-de{lc($l[2])} = lc($l[1]);
%nick-github-de{trim(lc($l[2]))} = lc($l[1]);
}

my @asistentes = $fichero-nicks.IO.lines();
say @asistentes;

say @asistentes.map( { %nick-github-de{lc($_)} }).join("\n");

0 comments on commit 411c3d5

Please sign in to comment.