mirror of
https://github.com/gosticks/SwiftGit2.git
synced 2025-10-16 11:55:34 +00:00
13 lines
168 B
Awk
13 lines
168 B
Awk
BEGIN {
|
|
FS = "\n";
|
|
}
|
|
|
|
/Targets:/ {
|
|
while (getline && $0 != "") {
|
|
if ($0 ~ /Tests/) continue;
|
|
|
|
sub(/^ +/, "");
|
|
print "'" $0 "'";
|
|
}
|
|
}
|