Skip to content

Commit b6afd9b

Browse files
committed
fix: cli missing arg
1 parent 6676fb8 commit b6afd9b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/cli.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ def cmd_update_readme(args):
172172
max_categories=args.max_categories,
173173
include_toc=args.include_toc,
174174
include_description=args.include_description,
175+
starred_repo_url=args.starred_repo_url,
175176
create_if_missing=args.create,
176177
)
177178

@@ -331,6 +332,7 @@ def main():
331332
readme_parser.add_argument("--max-categories", type=int, default=10, help="Max categories")
332333
readme_parser.add_argument("--include-toc", action="store_true", help="Include table of contents")
333334
readme_parser.add_argument("--include-description", action="store_true", help="Include repo descriptions")
335+
readme_parser.add_argument("--starred-repo-url", default="https://github.com/yourusername/starred", help="URL to your starred repo (for promotion)")
334336
readme_parser.add_argument("--create", action="store_true", help="Create README if missing")
335337
readme_parser.add_argument("--create-template", action="store_true", help="Create template README")
336338

0 commit comments

Comments
 (0)