File tree 2 files changed +4
-3
lines changed
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");
6
6
7
7
export class PostInstallCommand implements ICommand {
8
8
9
- constructor ( private $autocompletionService : IAutoCompletionService ,
9
+ constructor ( private $autoCompletionService : IAutoCompletionService ,
10
10
private $fs : IFileSystem ,
11
11
private $staticConfig : IStaticConfig ) { }
12
12
@@ -18,7 +18,7 @@ export class PostInstallCommand implements ICommand {
18
18
this . $fs . chmod ( this . $staticConfig . adbFilePath , "0777" ) . wait ( ) ;
19
19
}
20
20
21
- this . $autocompletionService . enableAutoCompletion ( ) . wait ( ) ;
21
+ this . $autoCompletionService . enableAutoCompletion ( ) . wait ( ) ;
22
22
} ) . future < void > ( ) ( ) ;
23
23
}
24
24
}
Original file line number Diff line number Diff line change 1
1
2
2
var 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