@yaakapp/cli 0.0.18 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -2
- package/scripts/install.js +1 -1
package/package.json
CHANGED
package/scripts/install.js
CHANGED
@@ -77,7 +77,7 @@ async function downloadBinary() {
|
|
77
77
|
// Download the tarball of the right binary distribution package
|
78
78
|
const platform = process.platform === 'win32' ? 'windows' : process.platform;
|
79
79
|
const arch = process.arch === 'x64' ? 'amd64' : process.arch;
|
80
|
-
const url = `https://github.com/yaakapp/
|
80
|
+
const url = `https://github.com/yaakapp/cli/releases/download/v${VERSION}/yaakcli_${VERSION}_${platform}_${arch}.tar.gz`;
|
81
81
|
console.log(`Downloading ${url}`);
|
82
82
|
const tarballDownloadBuffer = await makeRequest(url);
|
83
83
|
|