Mercurial > repos > public > sbplib_julia
diff update_manifest.jl @ 2057:8a2a0d678d6f feature/lazy_tensors/pretty_printing
Merge default
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Tue, 10 Feb 2026 22:41:19 +0100 |
| parents | 608a24a7b13b |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/update_manifest.jl Tue Feb 10 22:41:19 2026 +0100 @@ -0,0 +1,22 @@ +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") +
