Skip to content

Commit

Permalink
ocrd_exec: use non-tty SSH command again (otherwise will not terminate)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocrd committed Mar 7, 2024
1 parent d6cf314 commit 66572aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocrd_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ ocrd_exec() {
for param in "$@"; do
$param
done
} | ssh -tt -p "${CONTROLLERPORT}" ocrd@${CONTROLLERHOST} 2>&1
} | ssh -T -p "${CONTROLLERPORT}" ocrd@${CONTROLLERHOST} 2>&1
}

pre_process_to_workdir() {
Expand Down

0 comments on commit 66572aa

Please sign in to comment.