diff --git a/src/main.py b/src/main.py index bd6f9f0..6f5c14b 100644 --- a/src/main.py +++ b/src/main.py @@ -55,6 +55,7 @@ def bakasable() -> None: add_parser = sub_parsers.add_parser("add", help="add a module to your project from github") add_parser.add_argument("-n", "--name", type=str, required=True, dest="name", help="name of the github repository") add_parser.add_argument("-a", "--author", type=str, required=True, dest="author", help="name of the github user") + add_parser.add_argument("-r", "--repo", type=str, default="git.anulax.ch", dest="repo", help="git repository where project is stored") add_parser.set_defaults(func=add) remove_parser = sub_parsers.add_parser("remove", help="remove a module from your project")