fix(connection): support absolute download urls for public data

This commit is contained in:
2026-06-11 21:04:28 +09:00
parent 428be1289c
commit 04c0003a61
4 changed files with 13 additions and 9 deletions
+3 -1
View File
@@ -28,7 +28,9 @@ class ConfigCommand(BaseCommand):
list_parser = config_parsers.add_parser("list", help="list all the remote hosts", aliases=["ls"])
list_parser.set_defaults(func=cls.func_list)
# config delete
delete_parser = config_parsers.add_parser("delete", help="delete an existing remote host", aliases=["remove", "rm"])
delete_parser = config_parsers.add_parser(
"delete", help="delete an existing remote host", aliases=["remove", "rm"]
)
delete_parser.add_argument("remote", help="label of remote host")
delete_parser.set_defaults(func=cls.func_delete)