g3/scripts/release/useless_patch.awk
2023-03-09 17:55:45 +08:00

8 lines
199 B
Awk

$0 ~ /^warning: Patch .* was not used in the crate graph.$/ {
print substr($3,2)"/"substr($4,2);
}
$0 ~ /^Patch .* was not used in the crate graph.$/ {
print substr($2,2)"/"substr($3,2);
}