summaryrefslogtreecommitdiffstats
path: root/src/image
diff options
context:
space:
mode:
authorMichael Brown2010-11-29 15:38:03 +0100
committerMichael Brown2010-11-29 15:38:03 +0100
commit930f009bfae32faf7160b1d04d794e5494d8644c (patch)
tree34e83f3caa4eb52fb549bf190db4577946257784 /src/image
parent[cmdline] Match user expectations for &&, ||, goto, and exit (diff)
downloadipxe-930f009bfae32faf7160b1d04d794e5494d8644c.tar.gz
ipxe-930f009bfae32faf7160b1d04d794e5494d8644c.tar.xz
ipxe-930f009bfae32faf7160b1d04d794e5494d8644c.zip
[script] Remove "Aborting on <line>" message
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/image')
-rw-r--r--src/image/script.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/image/script.c b/src/image/script.c
index 1c3ff82e..044bb016 100644
--- a/src/image/script.c
+++ b/src/image/script.c
@@ -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;
}