mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix the check for emacs-eshell terminal
This commit is contained in:
@@ -1180,7 +1180,7 @@ _.extend(Console.prototype, {
|
||||
} else if ((! self._stream.isTTY) || (! self._pretty)) {
|
||||
// No progress bar if not in pretty / on TTY.
|
||||
newProgressDisplay = new ProgressDisplayNone(self);
|
||||
} else if (self._stream.isTTY && ! self.width()) {
|
||||
} else if (self._stream.isTTY && ! self._stream.columns) {
|
||||
// We might be in a pseudo-TTY that doesn't support
|
||||
// clearLine() and cursorTo(...).
|
||||
// It's important that we only enter status message mode
|
||||
|
||||
Reference in New Issue
Block a user