You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
473 B
26 lines
473 B
BEGIN{
|
|
i = 0
|
|
}
|
|
|
|
{
|
|
|
|
if ( $0 ~ /does not exist/ )
|
|
{
|
|
++i
|
|
}
|
|
|
|
}
|
|
|
|
END{
|
|
|
|
if (i == 0)
|
|
{
|
|
|
|
print "set subject=%bldProject% Build (%bldBldNumber%) Copy Completed OK!"
|
|
print "echo Well, looks as though everything was built and copied fine! Hammer wishes >> chkbuild.out"
|
|
print "echo you a very good build and a great day! >> chkbuild.out"
|
|
}
|
|
else
|
|
print "set subject=%bldProject% Build (%bldBldNumber%) Copy Status - FILES MISSING!"
|
|
|
|
}
|