code-abyss 1.6.1 → 1.6.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/install.js +3 -4
- package/package.json +1 -1
package/bin/install.js
CHANGED
|
@@ -4,7 +4,7 @@ const fs = require('fs');
|
|
|
4
4
|
const path = require('path');
|
|
5
5
|
const os = require('os');
|
|
6
6
|
|
|
7
|
-
const VERSION = '1.6.
|
|
7
|
+
const VERSION = '1.6.2';
|
|
8
8
|
const HOME = os.homedir();
|
|
9
9
|
const SKIP = ['__pycache__', '.pyc', '.pyo', '.egg-info', '.DS_Store', 'Thumbs.db', '.git'];
|
|
10
10
|
const PKG_ROOT = path.join(__dirname, '..');
|
|
@@ -370,9 +370,8 @@ async function installCcline(ctx) {
|
|
|
370
370
|
ok('ccline/config.toml (已存在)');
|
|
371
371
|
}
|
|
372
372
|
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
printMergeLog(log);
|
|
373
|
+
ctx.settings.statusLine = CCLINE_STATUS_LINE.statusLine;
|
|
374
|
+
ok(`statusLine → ${c.cyn(CCLINE_STATUS_LINE.statusLine.command)}`);
|
|
376
375
|
fs.writeFileSync(ctx.settingsPath, JSON.stringify(ctx.settings, null, 2) + '\n');
|
|
377
376
|
|
|
378
377
|
console.log('');
|