Fix Typo in print_terraform_command

This commit is contained in:
niels.knacke+quietschenetchen@neuland-bfi.de 2021-07-07 16:14:58 +02:00
parent 20ae3e3b2c
commit 7860b5bf02

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)