@fefsbenson/jarvis 1.0.1 → 1.0.2
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/bin/cli.js +8 -2
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -241,8 +241,14 @@ async function instalar(args) {
|
|
|
241
241
|
console.log(` ${fraco('Destino:')} ${branco(destino)}`);
|
|
242
242
|
console.log(` ${fraco('Python:')} ${branco(py.cmd + ' ' + py.versao)}`);
|
|
243
243
|
console.log();
|
|
244
|
-
console.log(` ${cinza('
|
|
245
|
-
console.log(` ${
|
|
244
|
+
console.log(` ${cinza('O JARVIS não é público: ele carrega conhecimento licenciado, então')}`);
|
|
245
|
+
console.log(` ${cinza('mora num repositório privado. Preciso de um token para baixá-lo.')}`);
|
|
246
|
+
console.log();
|
|
247
|
+
console.log(` ${fraco('Quem te entregou o sistema forneceu esse token junto.')}`);
|
|
248
|
+
console.log(` ${fraco('Se você mesmo publicou e tem o GitHub CLI aqui, use:')}`);
|
|
249
|
+
console.log(` ${cinza('JARVIS_TOKEN=$(gh auth token) npx @fefsbenson/jarvis install')}`);
|
|
250
|
+
console.log();
|
|
251
|
+
console.log(` ${fraco('(o token não aparece na tela enquanto você digita)')}`);
|
|
246
252
|
console.log();
|
|
247
253
|
|
|
248
254
|
const token = process.env.JARVIS_TOKEN || await perguntar('Token:', true);
|