Skip to content

Commit

Permalink
Merge pull request #73 from slub/ssh-non-tty
Browse files Browse the repository at this point in the history
ocrd_exec: use non-tty SSH command again (otherwise will not terminate)
  • Loading branch information
bertsky authored Mar 8, 2024
2 parents d6cf314 + 66572aa commit 3461853
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 3461853

Please sign in to comment.