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 3030f6c commit ab5ef91Copy full SHA for ab5ef91
extensions/ql-vscode/src/variant-analysis/view-autofixes.ts
@@ -122,7 +122,9 @@ 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. Internal GitHub access required.");
+ throw new Error(
126
+ "Path to local autofix installation not found. Internal GitHub access required.",
127
+ );
128
}
129
if (!(await pathExists(localAutofixPath))) {
130
throw new Error(`Local autofix path ${localAutofixPath} does not exist.`);
0 commit comments