Merge pull request #8816 from resios/patch-1

Actually fix #8811
This commit is contained in:
Mathieu Champlon 2021-10-21 14:42:51 +02:00 committed by GitHub
commit d38a315798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ func (s *composeService) prepareRun(ctx context.Context, project *types.Project,
}
func (s *composeService) getEscapeKeyProxy(r io.ReadCloser, isTty bool) (io.ReadCloser, error) {
if isTty {
if !isTty {
return r, nil
}
var escapeKeys = []byte{16, 17}