Skip to content

Commit

Permalink
fix: this should only be greater than
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollorion committed Aug 26, 2024
1 parent 8682107 commit 666c250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spacemk/exporters/terraform.py
Original file line number Diff line number Diff line change
Expand Up @@ -1594,7 +1594,7 @@ def find_workspace_variable_with_invalid_name(data: dict, workspace_id: str, typ
# KLUDGE: Stick to the latest MPL-licensed Terraform version for now
terraform_version = "1.5.7"
terraform_workflow_tool = "TERRAFORM_FOSS"
elif semver.match(terraform_version, ">=1.5.7"):
elif semver.match(terraform_version, ">1.5.7"):
terraform_workflow_tool = "CUSTOM"
else:
terraform_workflow_tool = "TERRAFORM_FOSS"
Expand Down

0 comments on commit 666c250

Please sign in to comment.