We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0888fed commit fdcec75Copy full SHA for fdcec75
src/packages.jl
@@ -72,7 +72,11 @@ function Experimental.register_package(
72
if startswith(repository_url, "https://github.com")
73
"github"
74
else
75
- throw(ArgumentError("Unable to determine git_server_type for repository: $(repository_url)"))
+ throw(
76
+ ArgumentError(
77
+ "Unable to determine git_server_type for repository: $(repository_url)"
78
+ ),
79
+ )
80
end
81
82
git_server_type
@@ -94,8 +98,8 @@ function Experimental.register_package(
94
98
"notes" => something(notes, ""),
95
99
"subdir" => subdirectory,
96
100
"git_server_type" => git_server_type,
97
- )
- ]
101
102
+ ],
103
)
104
r = _restcall(
105
auth,
0 commit comments