File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,26 +53,26 @@ for r in repos
53
53
desc = r[" description" ]
54
54
branch = r[" defaultBranchRef" ][" name" ]
55
55
56
- println ("""
56
+ print ("""
57
57
PackageDefinition(
58
58
"$name_no_suffix ", "$url ",
59
59
[
60
60
""" )
61
61
if isempty (homepageUrl)
62
- println ("""
62
+ print ("""
63
63
"README" => "https://github.com/JuliaDocs/$name ",
64
64
""" )
65
65
else
66
66
# HACK / workaround for Highlights.jl
67
67
if endswith (homepageUrl, " /stable" )
68
68
homepageUrl = replace (homepageUrl, " /stable" => " " )
69
69
end
70
- println ("""
70
+ print ("""
71
71
"stable" => "$(joinpath (homepageUrl," stable/" )) ",
72
72
"dev" => "$(joinpath (homepageUrl," dev/" )) ",
73
73
""" )
74
74
end
75
- println ("""
75
+ print ("""
76
76
],
77
77
[
78
78
"https://codecov.io/gh/JuliaDocs/$name /branch/$branch /graph/badge.svg" => "https://codecov.io/gh/JuliaDocs/$name ",
You can’t perform that action at this time.
0 commit comments