2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-11-22 17:41:55 +00:00

[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

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;
}