Skip to content

Commit f333ece

Browse files
jsvdclaude
andcommitted
Fix publishing guide: add --allow-dirty for arcane-cli cargo publish
cli/data/ is gitignored but included in the crate via Cargo.toml include directive, so cargo publish refuses without --allow-dirty. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a6b9b15 commit f333ece

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/publishing-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ cd cli
8989
# dependencies.arcane-engine version must match the just-published core version
9090

9191
# Dry run (will fail if cli/data/ is not populated)
92-
cargo publish --dry-run
92+
cargo publish --dry-run --allow-dirty
9393

94-
# Publish
95-
cargo publish
94+
# Publish (--allow-dirty needed because cli/data/ is gitignored but included in crate)
95+
cargo publish --allow-dirty
9696
```
9797

9898
**Post-publish:**

0 commit comments

Comments
 (0)