Skip to content

Commit 29fc298

Browse files
authored
feat(windows/install): add support for arm64 (#2933)
1 parent ccb023b commit 29fc298

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

install.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ function Get-Spicetify {
6767
if ($env:PROCESSOR_ARCHITECTURE -eq 'AMD64') {
6868
$architecture = 'x64'
6969
}
70+
elseif ($env:PROCESSOR_ARCHITECTURE -eq 'ARM64') {
71+
$architecture = 'arm64'
72+
}
7073
else {
7174
$architecture = 'x32'
7275
}

0 commit comments

Comments
 (0)