We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dc72b6 commit 9064a9cCopy full SHA for 9064a9c
site/e2e/playwright.config.ts
@@ -24,12 +24,12 @@ if(requireTerraformTests) {
24
// These execs will throw an error if the status code is non-zero.
25
// So if both these work, then we can launch terraform provisioners.
26
const terraformExec = execSync('terraform --version')
27
- const dockerExec = execSync('dockser --version')
+ const dockerExec = execSync('docker --version')
28
} catch(e) {
29
throw new Error("Terraform provisioners require docker & terraform. " +
30
"At least one of these is not present in the runtime environment. To check yourself:\n" +
31
- "\tterraform --version\n"+
32
- "\tdocker --version")
+ "\t$ terraform --version\n"+
+ "\t$ docker --version")
33
}
34
35
0 commit comments