File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,15 +4,15 @@ import { execute } from "./command-executor";
44import chalk from "chalk" ;
55
66function run ( ) : void {
7- if ( ! command ) {
8- showHelp ( /*showRootDescription*/ false ) ;
9- return ;
10- }
7+ if ( ! command ) {
8+ showHelp ( /*showRootDescription*/ false ) ;
9+ return ;
10+ }
1111
12- execute ( command ) . catch ( ( error : any ) : void => {
13- console . error ( chalk . red ( "[Error] " + error . message ) ) ;
14- process . exit ( 1 ) ;
15- } ) ;
12+ execute ( command ) . catch ( ( error : any ) : void => {
13+ console . error ( chalk . red ( "[Error] " + error . message ) ) ;
14+ process . exit ( 1 ) ;
15+ } ) ;
1616}
1717
1818run ( ) ;
Original file line number Diff line number Diff line change 11import * as fs from "fs" ;
22import * as path from "path" ;
33import * as xml2js from "xml2js" ;
4- import { out , isDebug } from "../util/interaction" ;
4+ import { out } from "../util/interaction" ;
55import { isValidVersion , isLowVersion } from "./validation-utils" ;
66import { fileDoesNotExistOrIsDirectory } from "./file-utils" ;
7- import * as chalk from "chalk" ;
7+ import chalk from "chalk" ;
88import * as cli from "../definitions/cli" ;
99
1010const plist = require ( "plist" ) ;
You can’t perform that action at this time.
0 commit comments