1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

[terraform] Fixed typo in preflight_checks (#38740)

The function was incorrectly reporting project path when it failed to find binary.
This commit is contained in:
Stanislav Simovski 2018-04-13 23:32:41 +03:00 committed by Ryan Brown
parent 636e705260
commit a00abcb003

View file

@ -139,7 +139,7 @@ module = None
def preflight_validation(bin_path, project_path, variables_args=None, plan_file=None): def preflight_validation(bin_path, project_path, variables_args=None, plan_file=None):
if not os.path.exists(bin_path): if not os.path.exists(bin_path):
module.fail_json(msg="Path for Terraform binary '{0}' doesn't exist on this host - check the path and try again please.".format(project_path)) module.fail_json(msg="Path for Terraform binary '{0}' doesn't exist on this host - check the path and try again please.".format(bin_path))
if not os.path.isdir(project_path): if not os.path.isdir(project_path):
module.fail_json(msg="Path for Terraform project '{0}' doesn't exist on this host - check the path and try again please.".format(project_path)) module.fail_json(msg="Path for Terraform project '{0}' doesn't exist on this host - check the path and try again please.".format(project_path))