Merge branch 'master' of github.com:DomainDrivenArchitecture/dda-devops-build

This commit is contained in:
jem 2021-08-10 21:29:54 +02:00
commit fcc55eac5f
3 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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")]

View file

@ -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)