summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
}