in src/utils/dotUtils.ts [11:19]
export async function isDotInstalled(): Promise<boolean> {
try {
await executeCommand("dot", ["-V"], { shell: true });
return true;
} catch (error) {
openUrlHint("GraphViz is not installed, please make sure GraphViz is in the PATH environment variable.", "https://aka.ms/azTerraform-requirement");
return false;
}
}