File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import * as inquirer from "inquirer";
3
3
import * as fs from "fs" ;
4
4
import { PermissionController } from "./scripts/controllers/PermissionController" ;
5
5
import { GenerateController } from "./scripts/controllers/GenerateController" ;
6
- import { MANIFAST_PATH } from "./scripts/constants/ManifestPath" ;
6
+ import { MANIFEST_PATH } from "./scripts/constants/ManifestPath" ;
7
7
import { DependencyController } from "./scripts/controllers/DependencyController" ;
8
8
import { PackageManager } from "./scripts/utils/PackageManager" ;
9
9
// import * as pkg from "./scripts/constants/Package";
@@ -45,7 +45,7 @@ if (commander.permission) {
45
45
const permissionController : PermissionController = new PermissionController ( ) ;
46
46
permissionController . addPermissionToManifest ( commander . permission , xml => {
47
47
try {
48
- fs . writeFileSync ( MANIFAST_PATH , xml ) ;
48
+ fs . writeFileSync ( MANIFEST_PATH , xml ) ;
49
49
console . log ( chalk . green ( `Successful adding permission` ) ) ;
50
50
} catch ( err ) {
51
51
console . log ( chalk . red ( `Failed to adding permission` ) ) ;
Original file line number Diff line number Diff line change 2
2
* Created by jade on 17/05/2017.
3
3
*/
4
4
5
- export const MANIFAST_PATH : string = "./app/src/main/AndroidManifest.xml" ;
5
+ export const MANIFEST_PATH : string = "./app/src/main/AndroidManifest.xml" ;
Original file line number Diff line number Diff line change 1
- import { MANIFAST_PATH } from "../constants/ManifestPath" ;
1
+ import { MANIFEST_PATH } from "../constants/ManifestPath" ;
2
2
import * as fs from "fs" ;
3
3
4
4
export class ManifestManager {
5
5
public static getManifestContent ( ) {
6
- return fs . readFileSync ( MANIFAST_PATH ) ;
6
+ return fs . readFileSync ( MANIFEST_PATH ) ;
7
7
}
8
8
}
You can’t perform that action at this time.
0 commit comments