Skip to content

Commit

Permalink
feat(windows/install): add support for arm64 (#2933)
Browse files Browse the repository at this point in the history
  • Loading branch information
rxri committed Apr 1, 2024
1 parent ccb023b commit 29fc298
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ function Get-Spicetify {
if ($env:PROCESSOR_ARCHITECTURE -eq 'AMD64') {
$architecture = 'x64'
}
elseif ($env:PROCESSOR_ARCHITECTURE -eq 'ARM64') {
$architecture = 'arm64'
}
else {
$architecture = 'x32'
}
Expand Down

0 comments on commit 29fc298

Please sign in to comment.