Skip to content

Commit 3ad14ed

Browse files
committed
fixup! Add basic script for regenerating src/index.md
1 parent ffead8d commit 3ad14ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

update.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,26 +53,26 @@ for r in repos
5353
desc = r["description"]
5454
branch = r["defaultBranchRef"]["name"]
5555

56-
println("""
56+
print("""
5757
PackageDefinition(
5858
"$name_no_suffix", "$url",
5959
[
6060
""")
6161
if isempty(homepageUrl)
62-
println("""
62+
print("""
6363
"README" => "https://github.com/JuliaDocs/$name",
6464
""")
6565
else
6666
# HACK / workaround for Highlights.jl
6767
if endswith(homepageUrl, "/stable")
6868
homepageUrl = replace(homepageUrl, "/stable" => "")
6969
end
70-
println("""
70+
print("""
7171
"stable" => "$(joinpath(homepageUrl,"stable/"))",
7272
"dev" => "$(joinpath(homepageUrl,"dev/"))",
7373
""")
7474
end
75-
println("""
75+
print("""
7676
],
7777
[
7878
"https://codecov.io/gh/JuliaDocs/$name/branch/$branch/graph/badge.svg" => "https://codecov.io/gh/JuliaDocs/$name",

0 commit comments

Comments
 (0)