Browse code

Merge "Fix logfile output getting stomped"

Jenkins authored on 2012/09/25 05:57:24
Showing 1 changed files
... ...
@@ -2294,7 +2294,7 @@ set +o xtrace
2294 2294
 if [[ -n "$LOGFILE" ]]; then
2295 2295
     exec 1>&3
2296 2296
     # Force all output to stdout and logs now
2297
-    exec 1> >( tee "${LOGFILE}" ) 2>&1
2297
+    exec 1> >( tee -a "${LOGFILE}" ) 2>&1
2298 2298
 else
2299 2299
     # Force all output to stdout now
2300 2300
     exec 1>&3