Skip to content

Commit

Permalink
Reduce 'commandline noise' by suppressing the propogation of the COLU…
Browse files Browse the repository at this point in the history
…MNS value if it is the default value (80).
  • Loading branch information
greg-1-anderson committed Jun 3, 2014
1 parent 988539b commit 52995cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/environment.inc
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ function drush_build_drush_command($drush_path = NULL, $php = NULL, $os = NULL,
$environment_variables[] = 'PHP_OPTIONS=' . drush_escapeshellarg($php_options_alias, $os);
}
$columns = drush_get_context('DRUSH_COLUMNS');
if ($columns) {
if (($columns) && ($columns != 80)) {
$environment_variables[] = 'COLUMNS=' . $columns;
}
$prefix = implode(' ', $environment_variables);
Expand Down

0 comments on commit 52995cd

Please sign in to comment.