Skip to content
This repository was archived by the owner on Sep 17, 2023. It is now read-only.

Commit 1cef636

Browse files
committed
fix: download release artifact from correct url
1 parent cf0984d commit 1cef636

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

npm/get-binary.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ const binPathForCurrentPlatform = () => {
1616
}
1717

1818
const getBinary = () => {
19-
const { version, repository } = require('../package.json')
19+
const { version } = require('../package.json')
2020
const platform = binPathForCurrentPlatform()
21-
const url = `${repository.url}/releases/download/v${version}/typescript-tools-${platform}.tar.gz`
21+
const url = `https://github.com/typescript-tools/rust-implementation/releases/download/v${version}/typescript-tools-${platform}.tar.gz`
2222
const binaryName = 'monorepo'
2323
console.log('Binary url', url)
2424
return new Binary(binaryName, url)

0 commit comments

Comments
 (0)