From 7860b5bf02b22a4a6da3192697f976e0ad057f5f Mon Sep 17 00:00:00 2001 From: "niels.knacke+quietschenetchen@neuland-bfi.de" Date: Wed, 7 Jul 2021 16:14:58 +0200 Subject: [PATCH] Fix Typo in print_terraform_command --- src/main/python/ddadevops/devops_terraform_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/python/ddadevops/devops_terraform_build.py b/src/main/python/ddadevops/devops_terraform_build.py index 0cf8c28..f9ca3b6 100644 --- a/src/main/python/ddadevops/devops_terraform_build.py +++ b/src/main/python/ddadevops/devops_terraform_build.py @@ -190,5 +190,5 @@ class DevopsTerraformBuild(DevopsBuild): def print_terraform_command(self, tf): if self.debug_print_terraform_command: - output = 'cd ' + self.build_path() + ' && ' + tf.latest_cmd + output = 'cd ' + self.build_path() + ' && ' + tf.latest_cmd() print(output)