Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions packages/cli/src/commands/package/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,12 @@ export default class PackageInstall extends Command {
// [ADR-0120 D5e] The installer's answer to the `isolated`-posture question.
// Deliberately NOT default-on and deliberately not named `--force`: it
// records an affirmative fact ("these constraints are genuinely
// platform-wide") into the install manifest, where `os doctor` can later
// show who affirmed it and when.
// platform-wide") into the install manifest, rather than overriding a
// check. `os doctor` reads that record back on every later run, but only
// to SUPPRESS re-reporting the constraints this ceremony already answered
// for (`unconfirmedGlobalUniques` in `@objectstack/types`) — an attested
// install does not become the recurring nag the gate exists to avoid. It
// does not display who affirmed it or when.
'confirm-global-uniques': Flags.boolean({
description:
"Confirm this app's installation-wide (`unique: 'global'`) constraints are genuinely platform-wide when "
Expand Down
Loading