diff --git a/packages/powershell/oh-my-posh/oh-my-posh.psm1 b/packages/powershell/oh-my-posh/oh-my-posh.psm1 index ad90daed..bf3be814 100644 --- a/packages/powershell/oh-my-posh/oh-my-posh.psm1 +++ b/packages/powershell/oh-my-posh/oh-my-posh.psm1 @@ -10,7 +10,7 @@ function Get-PoshCommand { if ($IsLinux) { # this is rather hacky but there's no other way for the time being $arch = uname -m - if ($arch -eq 'aarch64') { + if (($arch -eq 'aarch64') -or ($arch -eq 'armv7l')) { return "$PSScriptRoot/bin/posh-linux-arm" } return "$PSScriptRoot/bin/posh-linux-amd64"