We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22d6429 commit 3030f6cCopy full SHA for 3030f6c
extensions/ql-vscode/src/variant-analysis/view-autofixes.ts
@@ -122,7 +122,7 @@ export async function viewAutofixesForVariantAnalysisResults(
122
async function findLocalAutofix(): Promise<string> {
123
const localAutofixPath = process.env.AUTOFIX_PATH;
124
if (!localAutofixPath) {
125
- throw new Error("Path to local autofix installation not found.");
+ throw new Error("Path to local autofix installation not found. Internal GitHub access required.");
126
}
127
if (!(await pathExists(localAutofixPath))) {
128
throw new Error(`Local autofix path ${localAutofixPath} does not exist.`);
0 commit comments