mirror of https://github.com/ipxe/ipxe.git
[script] Remove "Aborting on <line>" message
Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/1/head
parent
7bebe9579e
commit
930f009bfa
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue