Mercurial > repos > public > sbplib_julia
view update_manifest.jl @ 2095:99577c24a5a5 default
Added tag v0.1.7 for changeset 23e13150ac5a
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Mon, 02 Mar 2026 15:58:00 +0100 |
| parents | 608a24a7b13b |
| children |
line wrap: on
line source
using Pkg function update_and_log(root, d) printstyled("Updating '$d'"; color=:cyan, bold=true) println() dp = joinpath(root, d) update_directory(dp) println() end function update_directory(d) Pkg.activate(d) Pkg.update() end root = @__DIR__ update_and_log(root, ".") update_and_log(root, "benchmark") update_and_log(root, "docs") update_and_log(root, "test")
