File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import util = require("util");
66
77export class PostInstallCommand implements ICommand {
88
9- constructor ( private $autocompletionService : IAutoCompletionService ,
9+ constructor ( private $autoCompletionService : IAutoCompletionService ,
1010 private $fs : IFileSystem ,
1111 private $staticConfig : IStaticConfig ) { }
1212
@@ -18,7 +18,7 @@ export class PostInstallCommand implements ICommand {
1818 this . $fs . chmod ( this . $staticConfig . adbFilePath , "0777" ) . wait ( ) ;
1919 }
2020
21- this . $autocompletionService . enableAutoCompletion ( ) . wait ( ) ;
21+ this . $autoCompletionService . enableAutoCompletion ( ) . wait ( ) ;
2222 } ) . future < void > ( ) ( ) ;
2323 }
2424}
Original file line number Diff line number Diff line change 11
22var child_process = require ( "child_process" ) ;
3- child_process . exec ( 'node bin/nativescript.js dev-post-install' ) ;
3+ var command = process . argv [ 0 ] + ' bin/nativescript.js dev-post-install' ;
4+ child_process . exec ( command ) ;
You can’t perform that action at this time.
0 commit comments