File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,15 +52,17 @@ var DeployPluginBase = CoreObject.extend({
5252 opts = opts || { color : 'blue' } ;
5353 opts . color = opts . color || 'blue' ;
5454 var ui = this . ui ;
55+ // the following accomodates a spelling error in ember-cli
56+ var actualStream = ui . actualOutputStream || ui . actualOuputStream ;
5557
5658 if ( ! opts . verbose || ( opts . verbose && ui . verbose ) ) {
5759 if ( ui . verbose ) {
5860 ui . write ( blue ( '| ' ) ) ;
59- } else if ( ui . actualOutputStream && ui . actualOutputStream . cursorTo ) {
61+ } else if ( actualStream && actualStream . cursorTo ) {
6062 // on a real terminal we want to reset the cursor position
6163 // to avoid overlap with other outputs
62- ui . actualOuputStream . clearLine ( ) ;
63- ui . actualOutputStream . cursorTo ( 0 ) ;
64+ actualStream . clearLine ( ) ;
65+ actualStream . cursorTo ( 0 ) ;
6466 }
6567
6668 var chalkColor = chalk [ opts . color ] ;
You can’t perform that action at this time.
0 commit comments