@@ -50,7 +50,6 @@ export async function viewAutofixesForVariantAnalysisResults(
50
50
await withProgress (
51
51
async ( progress : ProgressCallback ) => {
52
52
// Get the path to the local autofix installation.
53
- progress ( progressUpdate ( 1 , 4 , `Checking for local autofix installation` ) ) ;
54
53
const localAutofixPath = findLocalAutofix ( ) ;
55
54
56
55
// Get the variant analysis with the given id.
@@ -60,7 +59,6 @@ export async function viewAutofixesForVariantAnalysisResults(
60
59
}
61
60
62
61
// Generate the query help and output it to the override directory.
63
- progress ( progressUpdate ( 2 , 4 , `Generating query help override` ) ) ;
64
62
await overrideQueryHelp ( variantAnalysis , cliServer , localAutofixPath ) ;
65
63
66
64
// Get the full names (nwos) of the selected repositories.
@@ -82,8 +80,8 @@ export async function viewAutofixesForVariantAnalysisResults(
82
80
// Run autofix and output results
83
81
progress (
84
82
progressUpdate (
85
- 3 ,
86
- 4 ,
83
+ 1 ,
84
+ 2 ,
87
85
`Processing ${ pluralize ( selectedRepoNames . length , "repository" , "repositories" ) } ` ,
88
86
) ,
89
87
) ;
@@ -98,7 +96,7 @@ export async function viewAutofixesForVariantAnalysisResults(
98
96
) ;
99
97
100
98
// Output results from all repos to a combined markdown file.
101
- progress ( progressUpdate ( 4 , 4 , `Finalizing autofix results` ) ) ;
99
+ progress ( progressUpdate ( 2 , 2 , `Finalizing autofix results` ) ) ;
102
100
const combinedOutputMarkdownFile = join (
103
101
autofixOutputStoragePath ,
104
102
"autofix-output.md" ,
0 commit comments