Skip to content

Commit

Permalink
Quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
visr committed Feb 14, 2025
1 parent 159cdcb commit f6c0b76
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions utils/update-manifest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const DETAILS_BEGIN = """
All package versions
</summary>
```
"""

"""
Expand All @@ -17,9 +18,9 @@ function (@main)(_)
path = normpath(@__DIR__, "../.pixi/update-manifest-julia.md")
redirect_stdio(; stdout = path, stderr = path) do
println("Update the Julia Manifest.toml to get the latest dependencies.\n")
println("__Changed packages__`\n```")
println("__Changed packages__\n```")
Pkg.update()
println("```\n\n__Packages still outdated after update__`\n```")
println("```\n\n__Packages still outdated after update__\n```")
Pkg.status(; outdated = true)
println("```")
end
Expand All @@ -41,6 +42,6 @@ function (@main)(_)
println(io, DETAILS_BEGIN)
sort!(installed_lines)
foreach(line -> println(io, line), installed_lines)
println("\n\n</details>")
println("```\n\n</details>")
end
end

0 comments on commit f6c0b76

Please sign in to comment.