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 d10da0d commit 6b3df6bCopy full SHA for 6b3df6b
src/frameworks/terraformFramework.ts
@@ -81,10 +81,9 @@ export class TerraformFramework implements IFramework {
81
try {
82
await execAsync(this.checkInstalledCommand);
83
return true;
84
- } catch (error: any) {
+ } catch {
85
Logger.verbose(
86
`[${this.logName}] This is not a ${this.logName} project. Terraform is not installed.`,
87
- { cause: error },
88
);
89
return false;
90
}
0 commit comments