arisa 2.3.27 → 2.3.28
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/arisa.js +0 -7
- package/package.json +1 -1
package/bin/arisa.js
CHANGED
|
@@ -398,10 +398,6 @@ function restartService() {
|
|
|
398
398
|
return restartDetachedFallback();
|
|
399
399
|
}
|
|
400
400
|
|
|
401
|
-
function printForegroundNotice() {
|
|
402
|
-
process.stdout.write("Starting Arisa in foreground. Press Ctrl+C to stop.\n");
|
|
403
|
-
process.stdout.write("Use `arisa start` to run it as a background service.\n");
|
|
404
|
-
}
|
|
405
401
|
|
|
406
402
|
// ── Root: create arisa user for Core process execution ──────────────
|
|
407
403
|
// Daemon runs as root. Core runs as user arisa (Claude CLI refuses root).
|
|
@@ -532,9 +528,6 @@ switch (command) {
|
|
|
532
528
|
break;
|
|
533
529
|
case "daemon":
|
|
534
530
|
case "run": {
|
|
535
|
-
if (isDefaultInvocation) {
|
|
536
|
-
printForegroundNotice();
|
|
537
|
-
}
|
|
538
531
|
// Single bun process: daemon + core in-process with --watch.
|
|
539
532
|
// When root, run as arisa (Claude CLI refuses root). su without "-"
|
|
540
533
|
// preserves parent env (ARISA_DATA_DIR, tokens, API keys).
|