We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cljstyle
1 parent 28b0c80 commit c48fe19Copy full SHA for c48fe19
1 file changed
src/cljstyle.ts
@@ -27,7 +27,7 @@ export async function getLatestCljstyle(githubAuth?: string): Promise<string> {
27
export function getArtifactName(version: string): string {
28
const [major, minor] = version.split('.').map(n => parseInt(n))
29
const platform = os.platform()
30
- const arch = os.arch()
+ const arch = os.arch() === 'arm64' ? 'arm64' : 'amd64'
31
32
if (major > 0 || minor > 15) {
33
switch (platform) {
0 commit comments