Skip to content

Commit 3030f6c

Browse files
jcogs33aeisenberg
andauthored
Update 'autofix not found' error message
Co-authored-by: Andrew Eisenberg <[email protected]>
1 parent 22d6429 commit 3030f6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/variant-analysis/view-autofixes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export async function viewAutofixesForVariantAnalysisResults(
122122
async function findLocalAutofix(): Promise<string> {
123123
const localAutofixPath = process.env.AUTOFIX_PATH;
124124
if (!localAutofixPath) {
125-
throw new Error("Path to local autofix installation not found.");
125+
throw new Error("Path to local autofix installation not found. Internal GitHub access required.");
126126
}
127127
if (!(await pathExists(localAutofixPath))) {
128128
throw new Error(`Local autofix path ${localAutofixPath} does not exist.`);

0 commit comments

Comments
 (0)