diff --git a/README.md b/README.md index 10d3691..c991c5f 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ dda-devops-build provide a environment to tie several DevOps tools together for # Setup +Ensure that yout python3 version is at least Python 3.7! + ``` sudo apt install python3-pip pip3 install pip3 --upgrade --user diff --git a/build.py b/build.py index 6b8445d..efbd8bf 100644 --- a/build.py +++ b/build.py @@ -28,7 +28,7 @@ use_plugin("python.distutils") default_task = "publish" name = "ddadevops" -version = "0.12.7-dev" +version = "0.12.8-dev" summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud" description = __doc__ authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")] 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)