Skip to content

Commit

Permalink
add a strip
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Oct 10, 2021
1 parent a58a674 commit afe42d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stdlib-list.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function get_stdlib_list(upstream::GitHub.Repo, branch_name::AbstractString; aut
m4 = match(my_regex_4, stdlib_version_line)
m5 = match(my_regex_5, stdlib_version_line)
if !(m2 isa Nothing)
branch_dict[:git_url] = m2[2]
branch_dict[:git_url] = strip(m2[2])
elseif !(m4 isa Nothing)
branch_dict[:branch] = m4[2]
elseif !(m5 isa Nothing)
Expand Down

0 comments on commit afe42d6

Please sign in to comment.