-
Notifications
You must be signed in to change notification settings - Fork 4
feat(update): hint at bitsocial logs --stdout after restarting daemons
#56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -130,6 +130,7 @@ export default class Install extends Command { | |
| // Restart daemons with the new binary | ||
| if (aliveDaemons.length > 0 && flags["restart-daemons"]) { | ||
| await this._restartDaemons(aliveDaemons); | ||
| this.log("To see the daemon logs run `bitsocial logs --stdout`"); | ||
| } | ||
|
Comment on lines
131
to
134
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add an automated test for the new hint gating behavior. This feature change needs a test that proves the hint appears only when a new version is installed and daemons were restarted, and stays hidden in the two negative cases. As per coding guidelines, "Add a test when you add a feature or fix a bug". 🤖 Prompt for AI Agents |
||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
npm run build && npm run build:testRepository: bitsocialnet/bitsocial-cli
Length of output: 4785
🏁 Script executed:
Repository: bitsocialnet/bitsocial-cli
Length of output: 2962
Mandated TS build checks currently fail (
npm run build && npm run build:test)npm installrunsnode bin/postinstall.jsand fails withERROR: No web UIs were downloaded. At least one web UI is required.Even after that,tsc --project config/tsconfig.jsonreports manyTS2307: Cannot find module ...errors, so the build/test command can’t pass in this environment.🤖 Prompt for AI Agents