Skip to content

Commit

Permalink
support apple M1
Browse files Browse the repository at this point in the history
Closes #57
  • Loading branch information
chemzqm committed Jan 19, 2021
1 parent 2fba91f commit 291ce5b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,9 @@ class TabNine {
case 'x64':
arch = 'x86_64'
break
case 'arm64':
arch = 'aarch64'
break
default:
throw new Error(`Sorry, the architecture '${process.arch}' is not supported by TabNine.`)
}
Expand Down

0 comments on commit 291ce5b

Please sign in to comment.