File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export class WBEnv {
1515 . join ( ' ' ) ;
1616 const argsForLog = args . join ( ' ' ) ;
1717
18- process . stderr . write ( `[wbenv] ${ envsForLog } ${ command } ${ argsForLog } ` ) ;
18+ console . error ( `[wbenv] ${ envsForLog } ${ command } ${ argsForLog } ` ) ;
1919
2020 this . childProcessSpawn ( command , args , {
2121 stdio : 'inherit' ,
@@ -50,12 +50,11 @@ export class WBEnv {
5050 }
5151
5252 private printUsage ( ) {
53- process . stderr . write ( dedent `
54- usage: wbenv [{ui|curl|pretty}] command [args...]
55- ui - send requests to Wirebird app
56- curl - log requests in the terminal as Curl commands
57- pretty - log requests in the terminal
58- ` ) ;
53+ console . error ( dedent `
54+ usage: wbenv [{ui|curl|pretty}] command [args...]
55+ ui - send requests to Wirebird app
56+ curl - log requests in the terminal as Curl commands
57+ pretty - log requests in the terminal` ) ;
5958 }
6059
6160 constructor (
You can’t perform that action at this time.
0 commit comments