mirror of
https://github.com/bytedance/g3.git
synced 2026-05-07 00:42:07 +00:00
8 lines
199 B
Awk
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);
|
|
}
|