@_xtribe/cli 1.0.51 → 1.0.52
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/install-tribe-minimal.js +1 -1
- package/install-tribe.js +1 -1
- package/package.json +1 -1
package/install-tribe-minimal.js
CHANGED
|
@@ -70,7 +70,7 @@ async function installTribe() {
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
// Download from GitHub releases
|
|
73
|
-
const url = `https://github.com/TRIBE-INC/
|
|
73
|
+
const url = `https://github.com/TRIBE-INC/releases/releases/latest/download/tribe-${platform}-${arch}`;
|
|
74
74
|
|
|
75
75
|
try {
|
|
76
76
|
await downloadFile(url, tribeDest);
|
package/install-tribe.js
CHANGED
|
@@ -640,7 +640,7 @@ async function installTribeCLI() {
|
|
|
640
640
|
// For testing, use a direct URL to our releases folder
|
|
641
641
|
const isTestEnv = process.env.TRIBE_TEST_BINARY_URL;
|
|
642
642
|
const testBinary = process.env.TRIBE_TEST_BINARY;
|
|
643
|
-
const githubRepo = process.env.TRIBE_INSTALLER_REPO || 'TRIBE-INC/
|
|
643
|
+
const githubRepo = process.env.TRIBE_INSTALLER_REPO || 'TRIBE-INC/releases';
|
|
644
644
|
|
|
645
645
|
// If we have a test binary file, use it directly
|
|
646
646
|
if (testBinary && fs.existsSync(testBinary)) {
|