Sign in
nest-open-source
/
nest-mobile-client-iphone
/
5.0.0
/
ReactiveCocoa
/
HEAD
/
.
/
script
/
targets.awk
blob: 117660dcd65394b88db61972af33ca7c75cf2039 [
file
] [
log
] [
blame
]
BEGIN
{
FS
=
"\n"
;
}
/
Targets
:/
{
while
(
getline
&&
$0
!=
""
)
{
if
(
$0
~
/Tests/
)
continue
;
sub
(
/^ +/
,
""
);
print
"'"
$0
"'"
;
}
}