Skip to content

Commit

Permalink
Fix download urls
Browse files Browse the repository at this point in the history
  • Loading branch information
atainter committed Jul 29, 2024
1 parent 16e691e commit e60e7f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ run().catch(error => {
async function run() {
switch (process.platform) {
case "win32": {
const url = 'https://github.com/workos/workos-cli/releases#:~:text=workos_cli_Windows_x86_64.zip';
const url = 'https://github.com/workos/workos-cli/releases/download/v0.2.0/workos_cli_Windows_x86_64.zip';
await installZip(binDir, url);
break;
}
case "linux": {
const url = 'https://github.com/workos/workos-cli/releases#:~:text=workos_cli_Linux_x86_64.tar.gz';
const url = 'https://github.com/workos/workos-cli/releases/download/v0.2.0/workos_cli_Linux_x86_64.tar.gz';
await installTarball(binDir, url);
break;
}
case "darwin": {
const url = 'https://github.com/workos/workos-cli/releases#:~:text=workos_cli_Darwin_x86_64.tar.gz';
const url = 'https://github.com/workos/workos-cli/releases/download/v0.2.0/workos_cli_Darwin_x86_64.tar.gz';
await installTarball(binDir, url);
break;
}
Expand Down

0 comments on commit e60e7f2

Please sign in to comment.