@@ -25,11 +25,11 @@ export type ScanResult = {
2525export default class Scan extends SfCommand < ScanResult > {
2626 public static description = messages . getMessage ( "commandDescription" ) ;
2727 public static examples : string [ ] = [
28- "sfdx flow: scan" ,
29- "sfdx flow: scan --failon warning" ,
30- "sfdx flow: scan -c path/to/config.json" ,
31- "sfdx flow: scan -c path/to/config.json --failon warning" ,
32- "sfdx flow: scan -d path/to/flows/directory" ,
28+ "sf flow scan" ,
29+ "sf flow scan --failon warning" ,
30+ "sf flow scan -c path/to/config.json" ,
31+ "sf flow scan -c path/to/config.json --failon warning" ,
32+ "sf flow scan -d path/to/flows/directory" ,
3333 ] ;
3434
3535 protected static requiresUsername = false ;
@@ -97,6 +97,8 @@ export default class Scan extends SfCommand<ScanResult> {
9797 this . userConfig && Object . keys ( this . userConfig ) . length > 0
9898 ? core . scan ( parsedFlows , this . userConfig )
9999 : core . scan ( parsedFlows ) ;
100+
101+ this . debug ( "scan results" , ...scanResults ) ;
100102 this . spinner . stop ( `Scan complete` ) ;
101103 this . log ( "" ) ;
102104
0 commit comments