Skip to content

Commit

Permalink
chore: support linux aarch64 in plugin install script
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Jul 6, 2023
1 parent 09f026f commit 5f96346
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/install-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ function detect_osarch() {
os='linux'
arch='x86_64'
;;
'Linux aarch64')
os='linux'
arch='aarch64'
;;
'Darwin x86' | 'Darwin x86_64')
os='osx'
arch='x86_64'
Expand Down

0 comments on commit 5f96346

Please sign in to comment.