Skip to content

Commit c4f7c65

Browse files
Merge branch 'improve-terraform-opentofu-support' into alpha
2 parents 188d8b9 + 6b3df6b commit c4f7c65

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/frameworks/terraformFramework.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,9 @@ export class TerraformFramework implements IFramework {
8181
try {
8282
await execAsync(this.checkInstalledCommand);
8383
return true;
84-
} catch (error: any) {
84+
} catch {
8585
Logger.verbose(
8686
`[${this.logName}] This is not a ${this.logName} project. Terraform is not installed.`,
87-
{ cause: error },
8887
);
8988
return false;
9089
}

0 commit comments

Comments
 (0)