Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forward the terminal size when running cli commands #42

Merged
merged 1 commit into from
Jul 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions inc/composer/class-command.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,16 @@ protected function cli( InputInterface $input, OutputInterface $output ) {
$option = $arg . '=' . escapeshellarg( substr( $option, strlen( $arg ) + 1 ) );
}
}

$columns = exec( 'tput cols' );
$lines = exec( 'tput lines' );
$has_stdin = ! posix_isatty( STDIN );
$command = sprintf(
'cd %s; VOLUME=%s COMPOSE_PROJECT_NAME=%s docker-compose exec %s -u nobody php wp %s',
'cd %s; VOLUME=%s COMPOSE_PROJECT_NAME=%s docker-compose exec -e COLUMNS=%d -e LINES=%d %s -u nobody php wp %s',
'vendor/altis/local-server/docker',
getcwd(),
$this->get_project_subdomain(),
$columns,
$lines,
$has_stdin || ! posix_isatty( STDOUT ) ? '-T' : '', // forward wp-cli's isPiped detection
implode( ' ', $options )
);
Expand Down