view update_manifest.jl @ 2055:274f4c1ce4b5 feature/sbp_operators/laplace_curvilinear tip

Add test for SBP property of laplace in mapped grid
author Jonatan Werpers <jonatan@werpers.com>
date Sun, 08 Feb 2026 00:05:40 +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")