1
0
Fork 0
mirror of https://gitlab.rlp.net/mobitar/ReCo.jl.git synced 2024-09-17 18:51:17 +00:00
ReCo.jl/update.jl

22 lines
351 B
Julia

using Pkg: Pkg
function update()
projects = (
".",
"test",
"analysis",
"graphics/CairoMakie_graphics",
"graphics/Luxor_graphics",
"performance",
"visualization",
)
for project in projects
Pkg.activate(project)
Pkg.update()
end
return nothing
end
update()