88a6bea6e8
Change-Id: I83c75ab75dae9c904e127ad6160c7641d4523e40 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1647 Reviewed-by: edef <edef@edef.eu> Tested-by: BuildkiteCI
11 lines
230 B
Perl
Executable file
11 lines
230 B
Perl
Executable file
#! /usr/bin/env -S perl -ln
|
|
use strict;
|
|
|
|
if (/^evaluating file '(.*)'$/ or
|
|
/^copied source '(.*)' -> '.*'$/ or
|
|
/^trace: lorri read: '(.*)'$/) {
|
|
print $1;
|
|
next;
|
|
}
|
|
|
|
print STDERR unless /^instantiated '.*' -> '.*'$/;
|