Skip to content

Commit

Permalink
[script] Remove "Aborting on <line>" message
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed Nov 29, 2010
1 parent 7bebe95 commit 930f009
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/image/script.c
Expand Up @@ -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;
}
Expand Down

0 comments on commit 930f009

Please sign in to comment.