There was an error while loading. Please reload this page.
1 parent 4614fd0 commit fc01f6aCopy full SHA for fc01f6a
1 file changed
src/basic_memory/cli/commands/project.py
@@ -422,7 +422,7 @@ def sync_project_command(
422
dry_run: bool = typer.Option(False, "--dry-run", help="Preview changes without syncing"),
423
verbose: bool = typer.Option(False, "--verbose", "-v", help="Show detailed output"),
424
) -> None:
425
- """One-way sync: local → cloud (make cloud identical to local).
+ """One-way sync: local -> cloud (make cloud identical to local).
426
427
Example:
428
bm project sync --name research
@@ -471,7 +471,7 @@ async def _get_project():
471
)
472
473
# Run sync
474
- console.print(f"[blue]Syncing {name} (local → cloud)...[/blue]")
+ console.print(f"[blue]Syncing {name} (local -> cloud)...[/blue]")
475
success = project_sync(sync_project, bucket_name, dry_run=dry_run, verbose=verbose)
476
477
if success:
0 commit comments