register outside a project silently creates a stray ./runs/ store
#305
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
register_process/register_campaign(crates/aura-cli/src/research_docs.rs:245/:573) callenv.registry()without the no-project guard, so registering outside any aura project silently CREATES a relative./runs/directory in a non-project cwd and registers the document into that stray store — instead of refusing with the "no Aura.toml found" prose. Same guard family as theshowno-project bug (found while diagnosing it), but a distinct write-path behaviour: it litters directories rather than misleading prose.Wanted
The register verbs guard like
campaign_runsdoes: outside a project they refuse (exit 1) naming the missing Aura.toml; no store is created as a side effect.refs #300