File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -52,15 +52,17 @@ var DeployPluginBase = CoreObject.extend({
52
52
opts = opts || { color : 'blue' } ;
53
53
opts . color = opts . color || 'blue' ;
54
54
var ui = this . ui ;
55
+ // the following accomodates a spelling error in ember-cli
56
+ var actualStream = ui . actualOutputStream || ui . actualOuputStream ;
55
57
56
58
if ( ! opts . verbose || ( opts . verbose && ui . verbose ) ) {
57
59
if ( ui . verbose ) {
58
60
ui . write ( blue ( '| ' ) ) ;
59
- } else if ( ui . actualOutputStream && ui . actualOutputStream . cursorTo ) {
61
+ } else if ( actualStream && actualStream . cursorTo ) {
60
62
// on a real terminal we want to reset the cursor position
61
63
// to avoid overlap with other outputs
62
- ui . actualOuputStream . clearLine ( ) ;
63
- ui . actualOutputStream . cursorTo ( 0 ) ;
64
+ actualStream . clearLine ( ) ;
65
+ actualStream . cursorTo ( 0 ) ;
64
66
}
65
67
66
68
var chalkColor = chalk [ opts . color ] ;
You can’t perform that action at this time.
0 commit comments