-
Notifications
You must be signed in to change notification settings - Fork 663
Closed
Description
SpacetimeDB/crates/cli/src/subcommands/dev.rs
Lines 410 to 423 in e26e7fe
| let clear_flag = match clear_database { | |
| ClearMode::Always => "always", | |
| ClearMode::Never => "never", | |
| ClearMode::OnConflict => "on-conflict", | |
| }; | |
| let mut publish_args = vec![ | |
| "publish", | |
| database_name, | |
| "--project-path", | |
| project_path_str, | |
| "--yes", | |
| "--delete-data", | |
| clear_flag, | |
| ]; |
the --delete-data needs to be "--delete-data=enum" but is currently "--delete-data enum" and thus the publish fails on "error: unexpected argument 'on-conflict' found"
Metadata
Metadata
Assignees
Labels
No labels