Remove -n flag from echo in healthy tasks printing

This commit is contained in:
Tortue Torche 2019-08-11 02:52:16 -04:00 committed by Tortue Torche
parent 339772a9bb
commit aeb5cccbea

2
psu
View File

@ -1214,7 +1214,7 @@ tasks_healthy() {
tasks_running=$(tasks 'running' 'running')
local tasks_job_complete
tasks_job_complete=$(tasks 'shutdown' 'complete')
echo "$(echo -n "${tasks_running}${tasks_job_complete}" | jq -sjc 'add | unique_by(.ID)')"
echo "$(echo "${tasks_running}${tasks_job_complete}" | jq -sjc 'add | unique_by(.ID)')"
}
services() {