Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
pulumi: show clearer error when unsupported architecture is used
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Oct 4, 2024
1 parent c7d0125 commit c5dbefa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/global/global.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func InstallPulumi() error {
case "arm64":
osArch += "-arm64"
default:
return fmt.Errorf("unsupported architecture")
return fmt.Errorf("unsupported architecture: " + runtime.GOARCH)
}

fileExtension := ".tar.gz"
Expand Down

0 comments on commit c5dbefa

Please sign in to comment.