david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[script] Remove "Aborting on <line>" message

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2010-11-29 14:38:03 +00:00
parent 7bebe9579e
commit 930f009bfa
1 changed files with 1 additions and 3 deletions

View File

@ -125,10 +125,8 @@ static int script_exec_line ( const char *line ) {
return 0;
/* Execute command */
if ( ( rc = system ( line ) ) != 0 ) {
printf ( "Aborting on \"%s\"\n", line );
if ( ( rc = system ( line ) ) != 0 )
return rc;
}
return 0;
}