Explorar el Código

Merge pull request #8816 from resios/patch-1

Actually fix #8811
Mathieu Champlon hace 4 años
padre
commit
d38a315798
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      pkg/compose/run.go

+ 1 - 1
pkg/compose/run.go

@@ -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}