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

23 lines
351 B
Julia
Raw Normal View History

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()