Skip to content

Commit

Permalink
Use https by default in schema store update script (#11882)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb authored Jun 14, 2024
1 parent c50577f commit 19cd9d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/update_schemastore.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ def determine_git_protocol(argv: list[str] | None = None) -> GitProtocol:
)
parser.add_argument(
"--proto",
required=True,
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)
return GitProtocol(args.proto)
Expand Down

0 comments on commit 19cd9d7

Please sign in to comment.