Merge "Don't buffer log output in sed"

This commit is contained in:
Jenkins
2016-12-21 18:04:25 +00:00
committed by Gerrit Code Review

View File

@@ -1678,7 +1678,7 @@ function tail_log {
local logfile=$2
if [[ "$USE_SCREEN" = "True" ]]; then
screen_process "$name" "sudo tail -f $logfile | sed 's/\\\\\\\\x1b/\o033/g'"
screen_process "$name" "sudo tail -f $logfile | sed -u 's/\\\\\\\\x1b/\o033/g'"
fi
}