Skip to content

Commit

Permalink
fix: typo in supported platforms for darwin-x64 (#361)
Browse files Browse the repository at this point in the history
Fixes #360
  • Loading branch information
nanpx authored Jun 26, 2024
1 parent b8debd7 commit 04412ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const { binaryPath } = require("./helpers")
// e.g.: https://github.com/sbdchd/squawk/releases/download/v0.1.3/squawk-darwin-x86_64
const RELEASES_BASE_URL = "https://github.com/sbdchd/squawk/releases/download"

const SUPPORTED_PLATFORMS = new Set(["darmin-x64", "darwin-arm64", "linux-x64"])
const SUPPORTED_PLATFORMS = new Set(["darwin-x64", "darwin-arm64", "linux-x64"])

/**
* @param {string} platform
Expand Down

0 comments on commit 04412ab

Please sign in to comment.