Skip to content

Commit

Permalink
Fix .ps1 passing bad --arch to .sh
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronFeledy authored and pirog committed May 17, 2024
1 parent 9fab34a commit 53a726b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

* Fixed `windows` setup script passing incorrect parameter to `wsl` setup script [#46](https://github.com/lando/setup-lando/issues/44)

## v3.2.1 - [May 15, 2024](https://github.com/lando/setup-lando/releases/tag/v3.2.1)

* Fixed bug preventing `Unrecognized option` message from showing correctly [#44](https://github.com/lando/setup-lando/issues/44)
Expand Down
2 changes: 1 addition & 1 deletion setup-lando.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ function Install-LandoInWSL {
$setupParams += "--debug"
}
if ($Arch) {
$setupParams += "--Arch=$Arch"
$setupParams += "--arch=$Arch"
}
if ($Fat) {
$setupParams += "--fat"
Expand Down

0 comments on commit 53a726b

Please sign in to comment.