Skip to content

Commit

Permalink
fix: remove linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
omissis committed Jan 9, 2024
1 parent d422588 commit fa87dcb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/dependencies/tools/terraform.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/sighupio/furyctl/internal/tool/terraform"
)

// TODO: remove when dropping support for fury 1.25.
// hasTerraformDarwinArm64Support should be dropped once furyctl removes support for fury v1.25.
func hasTerraformDarwinArm64Support(version string) bool {
v, err := semver.NewVersion(version)
if err != nil {
Expand All @@ -32,7 +32,6 @@ func hasTerraformDarwinArm64Support(version string) bool {
func NewTerraform(runner *terraform.Runner, version string) *Terraform {
arch := runtime.GOARCH

// TODO: remove when dropping support for fury 1.25.
if !hasTerraformDarwinArm64Support(version) {
arch = "amd64"
}
Expand Down

0 comments on commit fa87dcb

Please sign in to comment.