File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import { Args } from '@oclif/core'
2-
31import { UninstallOrchestrator } from '../orchestrators/uninstall.js' ;
42import { BaseCommand } from '../common/base-command.js' ;
53
@@ -14,13 +12,6 @@ export default class Uninstall extends BaseCommand {
1412
1513 static strict = false ;
1614
17- static args = {
18- resources : Args . string ( {
19- description : 'A resource typeId for uninstalling. Ex: "codify uninstall homebrew"' ,
20- required : true ,
21- } ) ,
22- }
23-
2415 public async run ( ) : Promise < void > {
2516 const { raw } = await this . parse ( Uninstall )
2617
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export abstract class BaseCommand extends Command {
2222
2323 const { flags } = await this . parse ( {
2424 baseFlags : ( super . ctor as typeof BaseCommand ) . baseFlags ,
25+ strict : false ,
2526 } ) ;
2627
2728 const reporterType = this . getReporterType ( flags ) ;
You can’t perform that action at this time.
0 commit comments