Use https by default in schema store update script (#11882)

This commit is contained in:
Zanie Blue 2024-06-14 18:30:54 -04:00 committed by GitHub
parent c50577f1d7
commit 19cd9d7d8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -136,9 +136,9 @@ def determine_git_protocol(argv: list[str] | None = None) -> GitProtocol:
) )
parser.add_argument( parser.add_argument(
"--proto", "--proto",
required=True,
choices=[proto.value for proto in GitProtocol], choices=[proto.value for proto in GitProtocol],
help="Protocol to use for cloning git repos", default="https",
help="Protocol to use for git authentication",
) )
args = parser.parse_args(argv) args = parser.parse_args(argv)
return GitProtocol(args.proto) return GitProtocol(args.proto)