@_xtribe/cli 2.2.9 → 2.2.10
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.js +6 -1
- package/package.json +1 -1
package/install-tribe.js
CHANGED
|
@@ -213,7 +213,12 @@ async function main() {
|
|
|
213
213
|
|
|
214
214
|
// Setup PATH
|
|
215
215
|
spinner.text = 'Setting up environment...';
|
|
216
|
-
|
|
216
|
+
try {
|
|
217
|
+
await setupPathQuiet();
|
|
218
|
+
} catch (error) {
|
|
219
|
+
// PATH setup had issues but continue with installation
|
|
220
|
+
console.log(chalk.yellow('⚠️ PATH setup had warnings, but installation completed'));
|
|
221
|
+
}
|
|
217
222
|
|
|
218
223
|
spinner.succeed('Ready!');
|
|
219
224
|
|