@_xtribe/cli 1.0.0-beta.14 → 1.0.0-beta.15
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 +12 -8
- package/package.json +1 -1
package/install-tribe.js
CHANGED
|
@@ -697,14 +697,11 @@ async function main() {
|
|
|
697
697
|
console.log('\n' + chalk.bold.green('✨ TRIBE is ready!'));
|
|
698
698
|
console.log('');
|
|
699
699
|
|
|
700
|
-
//
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
console.log(' ' + chalk.gray('or restart your terminal'));
|
|
706
|
-
console.log('');
|
|
707
|
-
}
|
|
700
|
+
// Always show PATH update reminder since npx runs in a subprocess
|
|
701
|
+
log.warning('To use tribe commands, update your PATH:');
|
|
702
|
+
console.log(chalk.yellow(` source ~/.${process.env.SHELL?.includes('zsh') ? 'zshrc' : 'bashrc'}`));
|
|
703
|
+
console.log(' ' + chalk.gray('or restart your terminal'));
|
|
704
|
+
console.log('');
|
|
708
705
|
|
|
709
706
|
log.info('Quick start:');
|
|
710
707
|
console.log(' tribe # Launch interactive CLI');
|
|
@@ -725,6 +722,13 @@ async function main() {
|
|
|
725
722
|
console.log('\n' + chalk.bold.green('✨ TRIBE is ready!'));
|
|
726
723
|
log.success('Cluster is already running');
|
|
727
724
|
console.log('');
|
|
725
|
+
|
|
726
|
+
// Always show PATH update reminder since npx runs in a subprocess
|
|
727
|
+
log.warning('To use tribe commands, update your PATH:');
|
|
728
|
+
console.log(chalk.yellow(` source ~/.${process.env.SHELL?.includes('zsh') ? 'zshrc' : 'bashrc'}`));
|
|
729
|
+
console.log(' ' + chalk.gray('or restart your terminal'));
|
|
730
|
+
console.log('');
|
|
731
|
+
|
|
728
732
|
log.info('Commands:');
|
|
729
733
|
console.log(' tribe # Launch interactive CLI');
|
|
730
734
|
console.log(' tribe status # Check status');
|