File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,17 +73,17 @@ export class TerraformFramework implements IFramework {
73
73
74
74
if ( ! r ) {
75
75
Logger . verbose (
76
- `[${ this . logName } ] This is not a Terraform or OpenTofu project. There are no *.tf files in ${ path . resolve ( '.' ) } folder.` ,
76
+ `[${ this . logName } ] This is not a ${ this . logName } project. There are no *.tf files in ${ path . resolve ( '.' ) } folder.` ,
77
77
) ;
78
78
return false ;
79
79
} else {
80
- // check if terraform is installed
80
+ // check if Terraform or OpenTofu is installed
81
81
try {
82
82
await execAsync ( this . checkInstalledCommand ) ;
83
83
return true ;
84
84
} catch {
85
85
Logger . verbose (
86
- `[${ this . logName } ] This is not a ${ this . logName } project. Terraform is not installed.` ,
86
+ `[${ this . logName } ] This is not a ${ this . logName } project. ${ this . logName } is not installed.` ,
87
87
) ;
88
88
return false ;
89
89
}
You can’t perform that action at this time.
0 commit comments